29318
This commit is contained in:
@@ -182,15 +182,15 @@
|
||||
<div class="right">
|
||||
|
||||
<AiSelect dict="fpHealth" v-model="form.healthyStatus"></AiSelect>
|
||||
<!-- <u-checkbox-group>
|
||||
<u-checkbox-group>
|
||||
<u-checkbox
|
||||
v-model="e.checked"
|
||||
v-for="(e, i) in fpHealth" :key="i"
|
||||
:name="item.dictValue"
|
||||
v-for="(e, i) in $dict.getDict('fpHealth')" :key="i"
|
||||
:name="e.dictValue"
|
||||
@change="checkboxChange(indexs, index, i)"
|
||||
>{{ e.dictName }}
|
||||
</u-checkbox>
|
||||
</u-checkbox-group> -->
|
||||
</u-checkbox-group>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -409,15 +409,6 @@ export default {
|
||||
this.form.currentAreaId = this.user.areaId
|
||||
}
|
||||
})
|
||||
// var dictList = []
|
||||
// console.log(this.$dict.getDict('fpHealth'));
|
||||
// this.$dict.getDict('fpHealth').map((item) => {
|
||||
// dictList.push(item.dictValue)
|
||||
// })
|
||||
// return helthList = dictList.join(',')
|
||||
// console.log(dictList.join(','));
|
||||
|
||||
|
||||
},
|
||||
|
||||
onShow() {
|
||||
@@ -441,6 +432,11 @@ export default {
|
||||
})
|
||||
},
|
||||
|
||||
checkboxChange(indexs, index, i) {
|
||||
this.formDataList[indexs][index].checkList[i].checked = !this.formDataList[indexs][index].checkList[i].checked
|
||||
this.$forceUpdate()
|
||||
},
|
||||
|
||||
nextStep() {
|
||||
const rules = this.rules()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user