el-select选中其他数值页面的数据不变。
获取到了数据,但是页面不能识别到数据,需要刷新组件
用vue的$forceUpdate()方法
<el-select v-model="form.res" @change="changeres">
<el-option
v-for="item in resarr"
:key="item.resid"
:label="item.resname"
:value="item.resid"
>
</el-option>
</el-select>
changeres(){
//xxxxxxxx
this.$forceUpdate()//刷新组件
}