代码优化
This commit is contained in:
parent
5ca920b185
commit
005bd0ef63
|
@ -5,10 +5,10 @@ VUE_APP_TITLE = 共享电动车管理系统
|
||||||
ENV = 'development'
|
ENV = 'development'
|
||||||
|
|
||||||
# 共享电动车管理系统/开发环境
|
# 共享电动车管理系统/开发环境
|
||||||
# VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
|
VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
|
||||||
# VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
|
# VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
|
||||||
|
|
||||||
VUE_APP_BASE_API = 'http://localhost:8088'
|
# VUE_APP_BASE_API = 'http://192.168.2.74:8088'
|
||||||
|
|
||||||
# 路由懒加载
|
# 路由懒加载
|
||||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||||
|
|
|
@ -834,6 +834,8 @@ export default {
|
||||||
|
|
||||||
// 处理运营区变化
|
// 处理运营区变化
|
||||||
handleAreaChange(val) {
|
handleAreaChange(val) {
|
||||||
|
console.log('=调用了');
|
||||||
|
|
||||||
if (!this.isUpdating) {
|
if (!this.isUpdating) {
|
||||||
this.fetchData3(val);
|
this.fetchData3(val);
|
||||||
}
|
}
|
||||||
|
@ -841,6 +843,8 @@ export default {
|
||||||
|
|
||||||
// 处理车型变化
|
// 处理车型变化
|
||||||
handleModelChange(val) {
|
handleModelChange(val) {
|
||||||
|
console.log('=调用了');
|
||||||
|
|
||||||
if (!this.isUpdating) {
|
if (!this.isUpdating) {
|
||||||
this.fetchData(val);
|
this.fetchData(val);
|
||||||
}
|
}
|
||||||
|
@ -1292,21 +1296,32 @@ export default {
|
||||||
this.form = response.data;
|
this.form = response.data;
|
||||||
|
|
||||||
this.selectHardwareVersion(response.data.hardwareVersionId)
|
this.selectHardwareVersion(response.data.hardwareVersionId)
|
||||||
|
// this.fetchData3(response.data.areaId)
|
||||||
|
// this.fetchData(response.data.deptId)
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = "修改设备1";
|
||||||
if (response.data.deptId) {
|
if (response.data.deptId) {
|
||||||
selectAreaListByDeptId(response.data.deptId).then((res) => {
|
selectAreaListByDeptId(response.data.deptId).then((res) => {
|
||||||
// 方案1: 使用Vue.set确保响应式更新
|
// 方案1: 使用Vue.set确保响应式更新
|
||||||
this.$set(this, 'modelOptions', []);
|
setTimeout(() => {
|
||||||
|
console.log('=调用了11');
|
||||||
|
|
||||||
|
this.$set(this, 'modelOptions', []);
|
||||||
this.$set(this, 'areaOptions', []);
|
this.$set(this, 'areaOptions', []);
|
||||||
this.$set(this, 'modelOptions', res.data.modelList);
|
this.$set(this, 'modelOptions', res.data.modelList);
|
||||||
this.$set(this, 'areaOptions', res.data.areaList);
|
this.$set(this, 'areaOptions', res.data.areaList);
|
||||||
|
this.$forceUpdate()
|
||||||
// 方案2: 使用nextTick确保DOM更新
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.modelOptions = res.data.modelList;
|
|
||||||
this.areaOptions = res.data.areaList;
|
|
||||||
});
|
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "修改设备";
|
this.title = "修改设备";
|
||||||
|
}, 800);
|
||||||
|
|
||||||
|
|
||||||
|
// 方案2: 使用nextTick确保DOM更新
|
||||||
|
// this.$nextTick(() => {
|
||||||
|
// this.modelOptions = res.data.modelList;
|
||||||
|
// this.areaOptions = res.data.areaList;
|
||||||
|
// },600);
|
||||||
|
|
||||||
// 不再需要setTimeout和$forceUpdate
|
// 不再需要setTimeout和$forceUpdate
|
||||||
}).finally(() => {
|
}).finally(() => {
|
||||||
this.isUpdating = false;
|
this.isUpdating = false;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user