From 3c738f4fe2762bba8087e5a22fc0dc06560eab0e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Thu, 08 Aug 2024 10:01:17 +0800
Subject: [PATCH] 三色任务与自查任务

---
 subPackage/workbench/views/reformList.vue |   12 +++---------
 1 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/subPackage/workbench/views/reformList.vue b/subPackage/workbench/views/reformList.vue
index fc9ba29..7915914 100644
--- a/subPackage/workbench/views/reformList.vue
+++ b/subPackage/workbench/views/reformList.vue
@@ -23,7 +23,7 @@
 				@click="navTo(i.id,i.reportType,i.status,i.type)">
 				<view class="item-title flex a-i-c j-c-s-b mb-20">
 					<text class="f-32 fw">{{i.name}}</text>
-					<u-tag v-if="i.status == 4" text="待接收" type="warning" plain plainFill></u-tag>
+					<u-tag v-if="i.status == 4" text="待完成" type="warning" plain plainFill></u-tag>
 					<u-tag v-if="i.status == 1" text="待审批" type="warning" plain plainFill></u-tag>
 					<u-tag v-if="i.status == 2" text="审核通过" type="success" plain plainFill></u-tag>
 					<u-tag v-if="i.status == 3" text="审核拒绝" type="error" plain plainFill></u-tag>
@@ -63,7 +63,7 @@
 						status: "",
 					},
 					{
-						name: "待接收",
+						name: "待完成",
 						status: 4,
 					},
 					{
@@ -94,19 +94,13 @@
 
 		onLoad(option) {
 			console.log(option);
-			if (option.reportType) {
-				this.reportType = option.reportType;
-				uni.setNavigationBarTitle({
-					title: "取保候审"
-				})
-			}
 			if (option.from == "index") {
 				uni.setNavigationBarTitle({
 					title: "场所任务"
 				})
 			}
 			if (option.from == "task") {
-				this.tabIndex = 1;
+				this.tabIndex = 2;
 				this.currentStatus = 1;
 			}
 			if (option.code) {

--
Gitblit v1.9.3