|
@@ -344,7 +344,6 @@ export default {
|
|
|
},
|
|
|
applicantChange(data) {
|
|
|
const user = this.nameOption.find(item => item.id === data)
|
|
|
- console.log('user', user)
|
|
|
this.form.identityCard = user.value
|
|
|
this.identityCardChange()
|
|
|
},
|
|
@@ -418,6 +417,10 @@ export default {
|
|
|
const json = _this.getItemJson(item)
|
|
|
_this.AllData.push(json)
|
|
|
})
|
|
|
+ // 默认全选
|
|
|
+ _this.AllData.forEach(item => {
|
|
|
+ this.$refs.eltable.toggleRowSelection(item, true)
|
|
|
+ })
|
|
|
}
|
|
|
_this.loading = false
|
|
|
}).catch((e) => {
|