From c1360bdc4932caf0ada4645205bd96a35e7ff740 Mon Sep 17 00:00:00 2001 From: xiangcongshuai Date: Thu, 8 Aug 2024 17:08:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E7=AC=94=E5=BD=95=E6=A1=88=E4=BB=B6?= =?UTF-8?q?=E9=9C=80=E6=B1=82=E4=BF=AE=E6=94=B9=EF=BC=8C=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/caseDetails/index.js | 10 +- src/components/Pagination/index.vue | 2 +- src/components/Search/index.vue | 6 +- src/config/net.config.js | 2 +- src/layouts/components/TabsBar/index.vue | 2 +- src/views/404.vue | 4 +- .../caseDetails/components/CaseAnalysis.vue | 2 +- .../caseDetails/components/CaseRecord.vue | 36 ++++-- .../caseDetails/components/TripletInfo.vue | 8 +- .../components/edit/AddCaseUser.vue | 52 ++++++-- .../components/edit/EditRecord.vue | 30 +++-- src/views/caseDetails/index.vue | 2 +- .../components/EditCaseInfo.vue | 15 ++- .../components/ModelAnalysis.vue | 2 +- src/views/caseManagement/index.vue | 117 +++++++++--------- src/views/login/index.vue | 2 +- src/views/ruleEngine/indexRule/index.vue | 4 +- 17 files changed, 181 insertions(+), 115 deletions(-) diff --git a/src/api/caseDetails/index.js b/src/api/caseDetails/index.js index ec85b16..255bcaa 100644 --- a/src/api/caseDetails/index.js +++ b/src/api/caseDetails/index.js @@ -159,4 +159,12 @@ export function caseScoreDetail(data) { method: 'get', params: data }) -} \ No newline at end of file +} +/** 修改案件人员 */ +export function updatePerson(data) { + return request({ + url: `/modelCase/updatePerson`, + method: 'post', + data + }) +} diff --git a/src/components/Pagination/index.vue b/src/components/Pagination/index.vue index f5afd9f..d95a710 100644 --- a/src/components/Pagination/index.vue +++ b/src/components/Pagination/index.vue @@ -37,7 +37,7 @@ export default { pageSizes: { type: Array, default() { - return [20, 40, 50, 100, 200] + return [12, 20, 40, 50, 100, 200] } }, layout: { diff --git a/src/components/Search/index.vue b/src/components/Search/index.vue index 62a26d0..af31041 100644 --- a/src/components/Search/index.vue +++ b/src/components/Search/index.vue @@ -131,8 +131,8 @@ format="yyyy-MM-dd HH:mm:ss" type="datetimerange" range-separator="至" - start-placeholder="开始时间" - end-placeholder="结束时间" + start-placeholder="开始" + end-placeholder="结束" />