保存
+保存
保存并打卡
From f9abacb38ce6fd1f3cfc4945c66a893d6686e4ba Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BA=9E=E4=B8=9C=E6=97=AD?= <850374051@qq.com>
Date: Mon, 26 Sep 2022 17:32:33 +0800
Subject: [PATCH] =?UTF-8?q?=E5=86=9C=E4=B8=9A=E6=89=A7=E6=B3=95=E6=8E=A5?=
=?UTF-8?q?=E5=8F=A3=E5=AF=B9=E6=8E=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/lawEnforcement/index.js | 24 +++++
src/router/index.js | 1 +
.../lawEnforcement/caseAllocation/caseAdd.vue | 99 ++++++++++++-------
.../caseAllocation/caseAllocation.vue | 12 +--
.../caseAllocation/caseDistribution.vue | 81 +++++++++++----
.../caseAllocation/caseLawEnforcer.vue | 2 -
.../caseAllocation/caseReturn.vue | 78 ++++++++++++---
7 files changed, 220 insertions(+), 77 deletions(-)
diff --git a/src/api/lawEnforcement/index.js b/src/api/lawEnforcement/index.js
index 40981546..dd9557b7 100644
--- a/src/api/lawEnforcement/index.js
+++ b/src/api/lawEnforcement/index.js
@@ -507,3 +507,27 @@ export function listEnforcer(query) {
params: query
})
}
+// 修改案件勘察
+export function updateSurvey(data) {
+ return request({
+ url: '/enforce/survey/edit',
+ method: 'post',
+ data: data
+ })
+}
+// 新增案件勘察
+export function addSurvey(data) {
+ return request({
+ url: '/enforce/survey/add',
+ method: 'post',
+ data: data
+ })
+}
+// 案件退回,从勘察退回至登记
+export function returnCase(data) {
+ return request({
+ url: '/enforce/case/returnCase',
+ method: 'post',
+ data: data
+ })
+}
diff --git a/src/router/index.js b/src/router/index.js
index ca32b4a1..e82d246e 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -3825,6 +3825,7 @@ export const constantRoutes = [
meta: {
title: '巡查登记',
hidden: true,
+ keepAlive: true
},
component: (resolve) => require(['@/views/lawEnforcement/caseAllocation/caseAdd'], resolve)
}
diff --git a/src/views/lawEnforcement/caseAllocation/caseAdd.vue b/src/views/lawEnforcement/caseAllocation/caseAdd.vue
index dea78c13..6a009fec 100644
--- a/src/views/lawEnforcement/caseAllocation/caseAdd.vue
+++ b/src/views/lawEnforcement/caseAllocation/caseAdd.vue
@@ -12,14 +12,14 @@
登记
-
保存
+保存
保存并打卡