diff --git a/.env.development b/.env.development index 4ae565e..f21d73f 100644 --- a/.env.development +++ b/.env.development @@ -5,10 +5,10 @@ VUE_APP_TITLE = 共享电动车管理系统 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 = 'http://localhost:8088' +# VUE_APP_BASE_API = 'http://192.168.2.74:8088' # 路由懒加载 VUE_CLI_BABEL_TRANSPILE_MODULES = true diff --git a/src/views/system/device/index.vue b/src/views/system/device/index.vue index 3a6b7d8..e01cfd1 100644 --- a/src/views/system/device/index.vue +++ b/src/views/system/device/index.vue @@ -834,6 +834,8 @@ export default { // 处理运营区变化 handleAreaChange(val) { + console.log('=调用了'); + if (!this.isUpdating) { this.fetchData3(val); } @@ -841,6 +843,8 @@ export default { // 处理车型变化 handleModelChange(val) { + console.log('=调用了'); + if (!this.isUpdating) { this.fetchData(val); } @@ -1292,21 +1296,32 @@ export default { this.form = response.data; 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) { selectAreaListByDeptId(response.data.deptId).then((res) => { // 方案1: 使用Vue.set确保响应式更新 - this.$set(this, 'modelOptions', []); + setTimeout(() => { + console.log('=调用了11'); + + this.$set(this, 'modelOptions', []); this.$set(this, 'areaOptions', []); this.$set(this, 'modelOptions', res.data.modelList); this.$set(this, 'areaOptions', res.data.areaList); - - // 方案2: 使用nextTick确保DOM更新 - this.$nextTick(() => { - this.modelOptions = res.data.modelList; - this.areaOptions = res.data.areaList; - }); + this.$forceUpdate() this.open = true; this.title = "修改设备"; + }, 800); + + + // 方案2: 使用nextTick确保DOM更新 + // this.$nextTick(() => { + // this.modelOptions = res.data.modelList; + // this.areaOptions = res.data.areaList; + // },600); + // 不再需要setTimeout和$forceUpdate }).finally(() => { this.isUpdating = false;