1.结构
<el-checkbox-group v-model="ruleForm.announceAppendixList">//绑定这个是传给后台的值
<el-checkbox
v-for="(item,index) in announceAppList"//announceAppList是获取接口的数据
:key="item.targetAppCode+index"
:label="item"//选中的值,不用写change事件(label选中状态的值(只有在checkbox-group或者绑定对象类型为array时有效))
>
{{item.targetAppName}}
</el-checkbox>
</el-checkbox-group>
2.data的数据
ruleForm: {
announceAppendixList: [],//指定应用,传给后台的数组
},
announceAppList: [], //获取接口的数据
网友评论