注册前部署
This commit is contained in:
@@ -59,22 +59,22 @@
|
||||
</uni-forms>
|
||||
<view class="uni-list" v-if="selectFlag">
|
||||
<checkbox-group @change="checkboxChange">
|
||||
<label class="uni-list-cell uni-list-cell-pd" v-for="item in items" :key="item.value">
|
||||
<label class="uni-list-cell uni-list-cell-pd" v-for="item in items" :key="item.userId">
|
||||
<view>
|
||||
<checkbox :value="item.id + ''" />
|
||||
<checkbox :value="item.userId + ''" />
|
||||
</view>
|
||||
<view class="main">
|
||||
<view class="">
|
||||
仲裁员姓名:{{item.arbitratorName}}
|
||||
仲裁员姓名:{{item.nickName}}
|
||||
</view>
|
||||
<view class="">
|
||||
<!-- <view class="">
|
||||
当前案件数量:{{item.currentCaseNum}}
|
||||
</view>
|
||||
<view class="">
|
||||
已结案数量:{{item.closedCaseNum}}
|
||||
</view>
|
||||
</view> -->
|
||||
<view class="">
|
||||
专业分类:{{item.professiClassifi}}
|
||||
介绍:{{item.remark}}
|
||||
</view>
|
||||
</view>
|
||||
</label>
|
||||
@@ -177,15 +177,16 @@
|
||||
checkboxChange(e) {
|
||||
let idArr = e.detail.value;
|
||||
let numberArray = idArr.map(str => parseInt(str));
|
||||
const result = this.items.filter(item => numberArray.includes(item.id));
|
||||
const result = this.items.filter(item => numberArray.includes(item.userId));
|
||||
let arbitrators = []
|
||||
result.forEach(item => {
|
||||
arbitrators.push({
|
||||
id: item.id,
|
||||
arbitratorName: item.arbitratorName
|
||||
id: item.userId,
|
||||
arbitratorName: item.nickName
|
||||
})
|
||||
})
|
||||
this.subnitForm.arbitrators = arbitrators;
|
||||
console.log(this.subnitForm.arbitrators,"PPPPPPPPPPPPPP");
|
||||
},
|
||||
getData(parms) {
|
||||
respondentDetail(parms).then(res => {
|
||||
|
||||
@@ -92,7 +92,6 @@
|
||||
return
|
||||
}
|
||||
let obj = {
|
||||
identityNum: "610528199802285713",
|
||||
pageNum: this.pageNum,
|
||||
pageSize: this.pageSize
|
||||
}
|
||||
@@ -102,7 +101,6 @@
|
||||
},
|
||||
onLoad() {
|
||||
let obj = {
|
||||
identityNum: "610528199802285713",
|
||||
pageNum: this.pageNum,
|
||||
pageSize: this.pageSize
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user