From db8e416fec0ab844026eb7bc91d9f59a457f4e6e Mon Sep 17 00:00:00 2001
From: Lou <luzhiping@qqyjz.com>
Date: Tue, 16 Jan 2024 17:41:30 +0800
Subject: [PATCH] 标签事件审核调整,优化
---
subPackage/workbench/views/audit.vue | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/subPackage/workbench/views/audit.vue b/subPackage/workbench/views/audit.vue
index 63c59a9..9e66a7a 100644
--- a/subPackage/workbench/views/audit.vue
+++ b/subPackage/workbench/views/audit.vue
@@ -189,7 +189,11 @@
},
navTo(id, type, status) {
if (status == 4) {
- this.navToEdit(type, id);
+ if (uni.getStorageSync("activeRole").roleName == "民警") {
+ this.navToDetail(type, id)
+ } else {
+ this.navToEdit(type, id);
+ }
} else {
this.navToDetail(type, id)
}
--
Gitblit v1.9.3