不再通过v-model和value进行绑定
而是通过绑定索引值Index
然后通过定义@input=change方法,通过索引值获取并更新想要绑定的多个值

<el-select v-model="basic_info.itemindex" placeholder=""  @input="change">
	<el-option v-for="(item,index) in categoryList" :key=index :label="item.categoryName" :value="index" />
</el-select>
change(index) {
      this.basic_info.categoryCode = this.categoryList[index].categoryCode
      this.default_return_value = this.categoryList[index].defaultReturnValue
},
Logo

前往低代码交流专区

更多推荐