下拉框选中数据后,roomType的值没有自动更新
查找资料后的已解决,特此记录。
解决办法:
加入强制更新时间
html
<el-form-item label="房型" prop="roomType">
<el-select v-model="form.roomType" placeholder="请选择房型" @change="selectPlatform">
<el-option
v-for="dict in dict.type.room_type"
v-if="locationRoomTypeList.includes(dict.value)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
script
// 强制更新房型
selectPlatform(){
this.$forceUpdate()
},
```