地址获取时添加nextTick

master
于肖磊 2025-04-24 15:04:37 +08:00
parent 7d78f07cdc
commit ff28336026
1 changed files with 4 additions and 1 deletions

View File

@ -33,6 +33,7 @@ import componentPopup from "@/components/popup/popup";
export default {
data() {
return {
show: false,
theme_view: app.globalData.get_theme_value_view(),
columns: [[0], [0], [0]],
//
@ -80,7 +81,9 @@ export default {
return false;
}
});
this.$set(this.columns_index, index, list_index);
this.$nextTick(() => {
this.$set(this.columns_index, index, list_index);
});
},
// picker change
changeHandler(e) {