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/task/index.vue | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/subPackage/task/index.vue b/subPackage/task/index.vue
index bdd1713..2fe7998 100644
--- a/subPackage/task/index.vue
+++ b/subPackage/task/index.vue
@@ -234,31 +234,31 @@
// this.bailCount = data.qbhs
for (let i of this.securityList) {
- if (i.name.trim() == "二手交易") {
+ if (i.name.trim() == "二手交易审核") {
i.count = data.bqsj
- } else if (i.name.trim() == "消防自查") {
+ } else if (i.name.trim() == "消防自查审核") {
i.count = data.xfzc;
- } else if (i.name.trim() == "消防隐患整改") {
+ } else if (i.name.trim() == "消防隐患整改审核") {
i.count = data.xfyhzg;
- } else if (i.name.trim() == "居住证申请") {
+ } else if (i.name.trim() == "居住证申请审核") {
i.count = data.jzzsq;
} else if (i.name.trim() == "从业人员审核") {
i.count = data.cyrysh;
- } else if (i.name.trim() == "无诈上报") {
+ } else if (i.name.trim() == "无诈上报审核") {
i.count = data.wztj;
- } else {
+ } else if (i.name.trim() == "取保监居审核") {
i.count = data.qbhs;
}
}
for (let i of this.schoolList) {
- if (i.name.trim() == "安全隐患上报") {
+ if (i.name.trim() == "安全隐患上报处置") {
i.count = data.xyyh;
- } else if (i.name.trim() == "纠纷矛盾上报") {
+ } else if (i.name.trim() == "纠纷矛盾上报处置") {
i.count = data.xyjfmd;
- } else if (i.name.trim() == "校园安保管理") {
+ } else if (i.name.trim() == "校园安保审核") {
i.count = data.xyaqjc;
} else {
- i.count = data.qbhs;
+ // i.count = data.qbhs;
}
}
}
--
Gitblit v1.9.3