html
<div class="goodRelease-list-son" v-for="prop in itemsTwo" :key="prop.index">
<el-checkbox :label="prop">:{{prop.itemSerialNumber}}</el-checkbox>
<div class="goodRelease-list-son-bottom ">
<el-row :gutter="10">
<el-col :span="2"><img :src="prop.iconUrl" class="w100"></el-col>
<el-col :span=22 class="">
<el-col :span=24 >
<el-col :span=2 class="tl">
<el-checkbox-group v-model="prop.newItem" style="margin:4px 0px 0px -80px;">
<el-checkbox true-label=1 false-label=0></el-checkbox>
</el-checkbox-group>
</el-col>
<el-col :span=2>
<el-checkbox-group v-model="prop.isTimeLimit" :max="1" style="margin:4px 0px 0px -65px;">
<el-checkbox true-label=1 false-label=0></el-checkbox>
</el-checkbox-group>
</el-col>
</el-col>
</el-col>
</el-row>
</div>
</div>
data structure
prop = the following data structures in vfor. May I ask how the new product & time limit is bound to newItem&isTimeLimit
[
{
id: "1",
newItem: 1,
isTimeLimit:1
},
{
id: "2",
newItem: 1,
isTimeLimit:1
},
{
id: "3",
newItem: 1,
isTimeLimit:1
}
]