diff --git a/pages/handlecase/component/uploadEvidence.vue b/pages/handlecase/component/uploadEvidence.vue
index e17f635..0ec5e84 100644
--- a/pages/handlecase/component/uploadEvidence.vue
+++ b/pages/handlecase/component/uploadEvidence.vue
@@ -176,11 +176,11 @@
:key="item.mediatorId">
+ :value="item.mediatorId + ''" :checked="item.echoFlag" />
- 仲裁员姓名:{{item.mediatorName}}
+ 调解员:{{item.mediatorName}}
专业:{{item.specialty || '暂无信息'}}
@@ -239,7 +239,7 @@
- 仲裁申请书
+ 调解申请书
@@ -511,8 +511,8 @@
})
},
// 获取仲裁员列表
- getArbitratorList() {
- arbitratorList().then(res => {
+ getArbitratorList(val) {
+ arbitratorList({caseAppliId: val}).then(res => {
this.items = res.data;
})
},
@@ -593,7 +593,7 @@
this.sysType = uni.getStorageSync('sysType')
this.getData(data.id);
this.subnitForm.caseId = Number(data.id);
- this.getArbitratorList()
+ this.getArbitratorList(data.id)
}
}