From 5b02887478e754f2c1db43344c747cfc040117a8 Mon Sep 17 00:00:00 2001
From: Lou <luzhiping@qqyjz.com>
Date: Wed, 24 Apr 2024 17:37:42 +0800
Subject: [PATCH] 更新
---
subPackage/workbench/views/audit.vue | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/subPackage/workbench/views/audit.vue b/subPackage/workbench/views/audit.vue
index 635b38f..44cffce 100644
--- a/subPackage/workbench/views/audit.vue
+++ b/subPackage/workbench/views/audit.vue
@@ -108,6 +108,10 @@
uni.setNavigationBarTitle({
title: "消防自查"
})
+ } else if (option.reportType == 4) {
+ uni.setNavigationBarTitle({
+ title: "校园安保检查"
+ })
} else if (option.reportType == 5) {
uni.setNavigationBarTitle({
title: "二手交易"
@@ -256,15 +260,18 @@
if (reportType == 1) {
this.$u.func.globalNavigator(`bailReportDetail?id=${id}`)
- } else if (reportType == 7) {
- this.$u.func.globalNavigator(`selfCheckDetail?id=${id}`)
+ } else if (reportType == 7 || reportType == 4) {
+ if (reportType == 4) {
+ this.$u.func.globalNavigator(`selfCheckDetail?id=${id}&type=2`)
+ } else {
+ this.$u.func.globalNavigator(`selfCheckDetail?id=${id}`)
+ }
+
} else if (reportType == 5) {
this.$u.func.globalNavigator(`labelReportDetail?id=${id}`)
} else {
this.$u.func.globalNavigator(`checkReform?id=${id}`)
}
-
-
},
showDateModal() {
--
Gitblit v1.9.3