el-select组件选中不显示的原因好像只出现在多级联动中,并且选中是有值的,只是单纯的不回显,可以在el-select中加入change事件,然后使用vue的set方法将值重新修改进去

<el-select style="width:60%;margin-left:10px" @change="abc" v-model="temp.region" placeholder="负责人">
            <el-option
              v-for="(item,index) in staff"
              :label="item.name"
              :value="item.sid"
              :key="index"
            ></el-option>
          </el-select>
//@change="abc"


abc(val){
      console.log("abc",val)
        //使用set重新赋值后一切正常
      this.$set(this.temp, this.temp.region, val)
    }

 

Logo

前往低代码交流专区

更多推荐