Selaa lähdekoodia

'小程序选择调解员回显'

hhl123456789 2 vuotta sitten
vanhempi
commit
9357c9b092
1 muutettua tiedostoa jossa 6 lisäystä ja 6 poistoa
  1. 6
    6
      pages/handlecase/component/uploadEvidence.vue

+ 6
- 6
pages/handlecase/component/uploadEvidence.vue Näytä tiedosto

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