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 配置说明