From 217c8edc3143db5f6f7c4d293719a413c0191717 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 12 Sep 2023 15:49:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A1=88=E4=BB=B6=E5=BD=95=E5=85=A5=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E8=81=94=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 1 + src/api/caseAccess/caseEntry.js | 51 +- src/views/caseAccessAll/caseEntry.vue | 521 ++++--------- .../caseAccessAll/components/batchDialog.vue | 75 ++ .../components/caseentryDialog.vue | 721 ++++++++++++++++++ vue.config.js | 4 +- 6 files changed, 990 insertions(+), 383 deletions(-) create mode 100644 src/views/caseAccessAll/components/batchDialog.vue create mode 100644 src/views/caseAccessAll/components/caseentryDialog.vue diff --git a/package.json b/package.json index c29f5ac..164609d 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,7 @@ "js-beautify": "1.13.0", "js-cookie": "3.0.1", "jsencrypt": "3.0.0-rc.1", + "moment": "^2.29.4", "nprogress": "0.2.0", "quill": "1.3.7", "screenfull": "5.0.2", diff --git a/src/api/caseAccess/caseEntry.js b/src/api/caseAccess/caseEntry.js index b77e920..635b67f 100644 --- a/src/api/caseAccess/caseEntry.js +++ b/src/api/caseAccess/caseEntry.js @@ -1,10 +1,51 @@ import request from '@/utils/request' -// 查询在线用户列表 -export function list(query) { +// 查询案件录入列表 +export function caseApply(data) { return request({ - url: '/monitor/online/list', - method: 'get', - params: query + url: '/caseApplication/list', + method: 'post', + data: data + }) +} + +// 立案申请 +export function addCaseApply(data) { + return request({ + url: '/caseApplication/addCaseApplication', + method: 'post', + data: data + }) +} +// 点击修改获取主体信息 +export function selectCaseApply(data) { + return request({ + url: '/caseApplication/selectCaseApplication', + method: 'post', + data: data + }) +} +// 修改案件信息 +export function editCaseApply(data) { + return request({ + url: '/caseApplication/editCaseApplication', + method: 'post', + data: data + }) +} +// 删除案件信息 +export function removeCaseApply(data) { + return request({ + url: '/caseApplication/removeCaseApplication', + method: 'post', + data: data + }) +} +// 提交 +export function submitCaseApply(data) { + return request({ + url: '/caseApplication/submitCaseApplication', + method: 'post', + data: data }) } diff --git a/src/views/caseAccessAll/caseEntry.vue b/src/views/caseAccessAll/caseEntry.vue index 3521a04..818038c 100644 --- a/src/views/caseAccessAll/caseEntry.vue +++ b/src/views/caseAccessAll/caseEntry.vue @@ -7,22 +7,22 @@ :inline="true" label-width="68px" > - + - + 搜索 - 重置 + > --> @@ -47,34 +47,49 @@ v-hasPermi="['monitor:job:add']" >立案申请 + 批量立案 - --> + - - + @@ -545,6 +315,5 @@ export default { overflow: auto !important; } #formContainer { - } diff --git a/src/views/caseAccessAll/components/batchDialog.vue b/src/views/caseAccessAll/components/batchDialog.vue new file mode 100644 index 0000000..1f25129 --- /dev/null +++ b/src/views/caseAccessAll/components/batchDialog.vue @@ -0,0 +1,75 @@ + + + + + \ No newline at end of file diff --git a/src/views/caseAccessAll/components/caseentryDialog.vue b/src/views/caseAccessAll/components/caseentryDialog.vue new file mode 100644 index 0000000..1bc03e7 --- /dev/null +++ b/src/views/caseAccessAll/components/caseentryDialog.vue @@ -0,0 +1,721 @@ + + + + + \ No newline at end of file diff --git a/vue.config.js b/vue.config.js index d1d3369..5b35050 100644 --- a/vue.config.js +++ b/vue.config.js @@ -11,8 +11,8 @@ const name = process.env.VUE_APP_TITLE || '智慧仲裁管理系统' // 网页 const port = process.env.port || process.env.npm_config_port || 80 // 端口 -const API = 'http://121.40.189.20:9001' //测试 -// const API = 'http://192.168.3.77:8080' //Q +// const API = 'http://121.40.189.20:9001' //测试 +const API = 'http://192.168.3.77:8080' //Q // vue.config.js 配置说明 //官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions -- 2.54.0