From 2de7b174c8048aa19a47033f89a5b0693bf20928 Mon Sep 17 00:00:00 2001
From: Lou <luzhiping@qqyjz.com>
Date: Fri, 12 Jan 2024 17:40:33 +0800
Subject: [PATCH] 新增走访任务页面,场所任务跳转, 调整部分样式

---
 subPackage/workbench/views/audit.vue |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/subPackage/workbench/views/audit.vue b/subPackage/workbench/views/audit.vue
index 88cb131..4453c99 100644
--- a/subPackage/workbench/views/audit.vue
+++ b/subPackage/workbench/views/audit.vue
@@ -24,6 +24,7 @@
 				@click="navTo(i.name,i.id,i.reportType)">
 				<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 == 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,6 +64,10 @@
 						status: "",
 					},
 					{
+						name: "待接收",
+						status: 4,
+					},
+					{
 						name: "待审核",
 						status: 1
 					},
@@ -73,7 +78,7 @@
 					{
 						name: "已拒绝",
 						status: 3
-					},
+					}
 				],
 				tabIndex: 0,
 				currentStatus: "",
@@ -216,7 +221,7 @@
 
 
 	.tab {
-		width: 100%;
+		// width: 100%;
 
 	}
 

--
Gitblit v1.9.3