diff --git a/src/pages/case-mistake/index.vue b/src/pages/case-mistake/index.vue
index fe8ff0a..94c9370 100644
--- a/src/pages/case-mistake/index.vue
+++ b/src/pages/case-mistake/index.vue
@@ -54,7 +54,7 @@
签字有效时间
-
@@ -76,6 +76,7 @@ import api from "@/services/caseManagement";
ObjectInfo:{
fileTypes:['MEDIATE_NOTE','MEDIATE_APPLICATION','CONFIRMATION_OF_ADDRESS'],
deadline:'1',
+ deadNum:'1',
caseIdList:[]
},
tableData:[],
@@ -104,7 +105,7 @@ import api from "@/services/caseManagement";
let currentDate = new Date();
// 获取昨天的日期
const nextDate = currentDate
- currentDate.setDate(currentDate.getDate() + (this.ObjectInfo.deadline*1))
+ currentDate.setDate(currentDate.getDate() + (this.ObjectInfo.deadNum*1))
const year = nextDate.getFullYear();
const month = (nextDate.getMonth() + 1).toString().padStart(2, '0');
const day = nextDate.getDate().toString().padStart(2, '0');
diff --git a/src/pages/mediation-page/components/RepaymentCertificate.vue b/src/pages/mediation-page/components/RepaymentCertificate.vue
index 772be94..ed4ddc5 100644
--- a/src/pages/mediation-page/components/RepaymentCertificate.vue
+++ b/src/pages/mediation-page/components/RepaymentCertificate.vue
@@ -244,6 +244,7 @@ import api from "@/services/caseManagement";
})
},
async getpreviewfull(fileList) {
+ this.ProofList = []
for (const item of fileList) {
try {
item.previewUrl = await this.$fetchApi.viewFullFile({path: item.proofUrl})
diff --git a/src/pages/mediation-page/components/VideoReservationDialog.vue b/src/pages/mediation-page/components/VideoReservationDialog.vue
index a3aa8f9..3a394bd 100644
--- a/src/pages/mediation-page/components/VideoReservationDialog.vue
+++ b/src/pages/mediation-page/components/VideoReservationDialog.vue
@@ -61,7 +61,7 @@
v-for="(item,index) in litigantsOptions"
:key="index"
:label="item.name+ ' ' +'('+ item.phone +')'"
- :value="item.identity"
+ :value="item.phone"
:disabled="(item.identity == '' || item.identity == null) ? true :false"
:title="(item.identity == '' || item.identity == null) ? '没有证件号码不能选择' :false">
@@ -263,7 +263,7 @@ export default {
this.$refs.ruleFormRepayment.validate((valid) => {
if (valid) {
const resultArr = this.litigantsOptions
- .filter(item => this.repaymentObj.litigants.includes(item.identity))
+ .filter(item => this.repaymentObj.litigants.includes(item.phone))
.map(({id, name, phone, identity}) => ({id, name, phone, identity}));
this.repaymentObj.caseId = this.eventDialog.caseId;
// console.log(resultArr, '---resultArr' , this.repaymentObj)
diff --git a/src/pages/mediation-page/components/contactPerson.vue b/src/pages/mediation-page/components/contactPerson.vue
index cb23d36..8c29eb9 100644
--- a/src/pages/mediation-page/components/contactPerson.vue
+++ b/src/pages/mediation-page/components/contactPerson.vue
@@ -32,7 +32,7 @@
-
电话
+
电话
{
return service.service.post(`${apiMediate}case_pkg/imports/error/down`, data)
},
+ // 清理案件包导入错误数据
+ postcase_pkg_error_clean: data => {
+ return service.service.post(`${apiMediate}case_pkg/imports/error/clean`, data)
+ },
diff --git a/src/services/index.js b/src/services/index.js
index 3880625..13fd53d 100644
--- a/src/services/index.js
+++ b/src/services/index.js
@@ -198,7 +198,7 @@
console.log('错误处理----code:', code, '----msg----:', msg)
Message.closeAll()
// todo 不知道能否预防多个请求都返回登录失效的情况,提示只有1个
- if((code == 9401 || code == 9403) && store.state.token) {
+ if(code === 9401 || code === 9403) {
// 登录过期&token存在,此时有提示
Message({ message: msg, type: "error",customClass:'messageZindex' })
store.state.token = '';