#43 小程序选择调解员回显

已合并
hhlxayunmei 2 年前 将 2 次代码提交从 hhl合并至 dev
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. 6
    6
      pages/handlecase/component/uploadEvidence.vue

+ 6
- 6
pages/handlecase/component/uploadEvidence.vue 查看文件

@@ -176,11 +176,11 @@
176 176
 										:key="item.mediatorId">
177 177
 										<view>
178 178
 											<checkbox color="blue" style="transform:scale(0.7)"
179
-												:value="item.mediatorId + ''" />
179
+												:value="item.mediatorId + ''" :checked="item.echoFlag" />
180 180
 										</view>
181 181
 										<view class="main">
182 182
 											<view class="">
183
-												仲裁员姓名:{{item.mediatorName}}
183
+												调解员:{{item.mediatorName}}
184 184
 											</view>
185 185
 											<view class="">
186 186
 												专业:{{item.specialty || '暂无信息'}}
@@ -239,7 +239,7 @@
239 239
 						</view>
240 240
 					</view>
241 241
 					<view class="" style="margin-top: 40rpx;">
242
-						<view>仲裁申请书</view>
242
+						<view>调解申请书</view>
243 243
 						<view v-for="item in formData.caseAttachList">
244 244
 							<uni-link v-if="item.annexType==3" :href="item.annexPath" color="#007BFF"
245 245
 								:text="item.annexName"></uni-link>
@@ -511,8 +511,8 @@
511 511
 				})
512 512
 			},
513 513
 			// 获取仲裁员列表
514
-			getArbitratorList() {
515
-				arbitratorList().then(res => {
514
+			getArbitratorList(val) {
515
+				arbitratorList({caseAppliId: val}).then(res => {
516 516
 					this.items = res.data;
517 517
 				})
518 518
 			},
@@ -593,7 +593,7 @@
593 593
 			this.sysType = uni.getStorageSync('sysType')
594 594
 			this.getData(data.id);
595 595
 			this.subnitForm.caseId = Number(data.id);
596
-			this.getArbitratorList()
596
+			this.getArbitratorList(data.id)
597 597
 		}
598 598
 
599 599
 	}