代码优化

This commit is contained in:
tx 2024-12-13 15:44:30 +08:00
parent 5ca920b185
commit 005bd0ef63
2 changed files with 24 additions and 9 deletions

View File

@ -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

View File

@ -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: 使nextTickDOM
this.$nextTick(() => {
this.modelOptions = res.data.modelList;
this.areaOptions = res.data.areaList;
});
this.open = true; this.open = true;
this.title = "修改设备"; this.title = "修改设备";
}, 800);
// 2: 使nextTickDOM
// 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;