From d263a8ce3afde37b182d2e6ffc3d601b337ccbdc Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 13 Oct 2023 14:06:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BD=92=E6=A1=A3=E8=AF=A6=E6=83=85=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../caseFiling/components/caselogInfo.vue | 56 +++++++++---------- src/views/caseManagement/caseList.vue | 14 +++-- .../components/formateCourtDialog.vue | 8 +-- src/views/index.vue | 8 +-- src/views/login.vue | 4 +- vue.config.js | 4 +- 6 files changed, 47 insertions(+), 47 deletions(-) diff --git a/src/views/caseFiling/components/caselogInfo.vue b/src/views/caseFiling/components/caselogInfo.vue index 4e8f010..ae942ac 100644 --- a/src/views/caseFiling/components/caselogInfo.vue +++ b/src/views/caseFiling/components/caselogInfo.vue @@ -1,21 +1,21 @@ @@ -28,20 +28,16 @@ export default { noData: false, }; }, - watch: { - caselogDataArr: { - handler(val) { - if (val && val.length > 0) { - this.noData = false; - this.activities = val; - this.activities.forEach((item) => { - item.content = item.content; - }); - } else { - this.noData = true; - } - }, - }, + created() { + if (this.caselogDataArr && this.caselogDataArr.length > 0) { + this.noData = false; + this.activities = this.caselogDataArr; + this.activities.forEach((item) => { + item.content = item.content; + }); + } else { + this.noData = true; + } }, methods: { cancel() { diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 9efd414..4ca484d 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -11,7 +11,7 @@ clearable @keyup.enter.native="handleQuery" /> --> - + @@ -97,10 +97,11 @@ v-if="scope.row.caseStatus == 7" v-hasPermi="['caseManagement:list:checkarbitrationway']">审核仲裁方式 书面审理 + >书面审理 + 开庭审理 + >开庭审理 生成裁决书 +
-
仲裁员信息列表
+
当前案件仲裁员信息列表
- + +
-
我的代办事项
+
我的待办事项
-
32
+
@@ -15,7 +15,7 @@
-
32
+
@@ -24,7 +24,7 @@
-
32
+
diff --git a/src/views/login.vue b/src/views/login.vue index 564efa8..b86769c 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -72,8 +72,8 @@ export default { return { codeUrl: "", loginForm: { - username: "admin", - password: "admin123", + username: "", + password: "", rememberMe: false, code: "", uuid: "" diff --git a/vue.config.js b/vue.config.js index eddf117..80c963d 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.18:9001' //B +// const API = 'http://121.40.189.20:9001' //测试 +const API = 'http://192.168.3.18:9001' //B // const API = 'http://192.168.3.77:8080' //Q // vue.config.js 配置说明