From 6b2aefa53eab6a25e4bda5d2192af1045d8b87c2 Mon Sep 17 00:00:00 2001
From: lin <sbla5888@163.com>
Date: Sat, 27 Apr 2024 17:18:03 +0800
Subject: [PATCH] 校园安全检查
---
src/views/publicSecurity/campusExclusion.vue | 69 +++++++++++++++++++++++++++++++++-
1 files changed, 67 insertions(+), 2 deletions(-)
diff --git a/src/views/publicSecurity/campusExclusion.vue b/src/views/publicSecurity/campusExclusion.vue
index a4587f6..0fa88e4 100644
--- a/src/views/publicSecurity/campusExclusion.vue
+++ b/src/views/publicSecurity/campusExclusion.vue
@@ -185,6 +185,70 @@
search: true,
align: 'center',
labelWidth: 110,
+ }, {
+ label: '是否问题',
+ align: 'center',
+ prop: 'isProblem',
+ type: 'radio',
+ slot: true,
+ dicData: [{
+ label: '是',
+ value: 1
+ }, {
+ label: '否',
+ value: 2
+ }],
+ width: 90,
+ },
+ {
+ label: '是否处理',
+ align: 'center',
+ prop: 'isHandle',
+ type: 'radio',
+ slot: true,
+ dicData: [{
+ label: '是',
+ value: 1
+ }, {
+ label: '否',
+ value: 2
+ }],
+ width: 90,
+ },
+ {
+ label: '是否上报',
+ align: 'center',
+ prop: 'isReporting',
+ type: 'radio',
+ slot: true,
+ dicData: [{
+ label: '是',
+ value: 1
+ }, {
+ label: '否',
+ value: 2
+ }],
+ width: 90,
+ }, {
+ width: 110,
+ span: 12,
+ label: "场所名称",
+ prop: "placeName",
+ searchSpan: 4,
+ searchLabelWidth: 60,
+ search: true,
+ align: 'center',
+ labelWidth: 110,
+ },
+ {
+ label: "类型",
+ prop: "type",
+ align: 'center',
+ dicUrl: "/api/blade-system/dict-biz/tree?code=xyaqyw",
+ props: {
+ label: "title",
+ value: "key",
+ },
},
{
width: 120,
@@ -230,7 +294,8 @@
prop: "streetName",
align: 'center',
labelWidth: 110,
- }, {
+ },
+ {
width: 156,
parent: false,
searchSpan: 4,
@@ -377,7 +442,7 @@
// 确认提交审核
submitAudit(form) {
let auditForm = {
- confirmFlag: form.status == '1' ? 3 : 4,
+ confirmFlag: form.status == '1' ? 2 : 3,
confirmNotion: form.confirmNotion,
}
updateAuditing(Object.assign(this.auditParams, auditForm)).then(res => {
--
Gitblit v1.9.3