保存
+保存
保存并打卡
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 @@
登记
-
保存
+保存
保存并打卡