111
This commit is contained in:
parent
0746100243
commit
318f178c3d
|
@ -44,10 +44,9 @@
|
|||
<div class="info-row">
|
||||
<div class="info-item">
|
||||
<span class="label">电门:</span>
|
||||
<el-tag :type="deviceInfo.quality === '1' ? 'success' : 'danger'" size="small">
|
||||
{{ deviceInfo.quality === '1' ? '开' : '关' }}
|
||||
<el-tag :type="deviceInfo.quality === 1 ? 'success' : 'danger'" size="small">
|
||||
{{ deviceInfo.quality === 1 ? '开' : '关' }}
|
||||
</el-tag>
|
||||
<!-- <span class="value">{{ deviceInfo.quality || '-' }}</span> -->
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<span class="label">锁信号:</span>
|
||||
|
|
|
@ -840,100 +840,102 @@ export default {
|
|||
}
|
||||
},
|
||||
/** 当选择代理商时调用 */
|
||||
handleDeptChange(val) {
|
||||
if (!this.isUpdating) {
|
||||
if (val) {
|
||||
this.isUpdating = true;
|
||||
selectAreaListByDeptId(val).then((response) => {
|
||||
// 更新运营区选项
|
||||
this.areaOptions = response.data.areaList || [];
|
||||
this.modelOptions = response.data.modelList || [];
|
||||
handleDeptChange(val) {
|
||||
if (!this.isUpdating) {
|
||||
if (val) {
|
||||
this.isUpdating = true;
|
||||
selectAreaListByDeptId(val).then((response) => {
|
||||
// 更新运营区选项
|
||||
this.areaOptions = response.data.areaList || [];
|
||||
this.modelOptions = response.data.modelList || [];
|
||||
|
||||
// 清空现有值
|
||||
this.form.areaId = null;
|
||||
this.form.modelId = null;
|
||||
|
||||
// 只有在有选项时才设置默认值
|
||||
if (this.areaOptions.length > 0) {
|
||||
this.form.areaId = this.areaOptions[0].areaId;
|
||||
}
|
||||
if (this.modelOptions.length > 0) {
|
||||
this.form.modelId = this.modelOptions[0].modelId;
|
||||
}
|
||||
|
||||
// 如果没有选项,显示提示信息
|
||||
if (this.areaOptions.length === 0) {
|
||||
this.$message.warning('该代理商暂无运营区');
|
||||
}
|
||||
if (this.modelOptions.length === 0) {
|
||||
this.$message.warning('该代理商暂无可用车型');
|
||||
}
|
||||
}).finally(() => {
|
||||
this.isUpdating = false;
|
||||
});
|
||||
} else {
|
||||
// 当代理商为空时,加载所有运营区
|
||||
this.isUpdating = true;
|
||||
listArea(this.queryParams2).then((response) => {
|
||||
this.areaOptions = response.rows || [];
|
||||
this.form.areaId = null;
|
||||
this.form.modelId = null;
|
||||
this.modelOptions = [];
|
||||
}).finally(() => {
|
||||
this.isUpdating = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/** 当选择运营区时调用 */
|
||||
handleAreaChange(val) {
|
||||
if (!this.isUpdating) {
|
||||
if (val) {
|
||||
this.isUpdating = true;
|
||||
selectDeptByAreaId(val).then((response) => {
|
||||
// 只有在代理商为空时,才设置代理商
|
||||
if (!this.form.deptId && response.data.sysDept) {
|
||||
this.form.deptId = response.data.sysDept.deptId;
|
||||
|
||||
// 获取该代理商下的车型列表
|
||||
selectAreaListByDeptId(this.form.deptId).then((deptResponse) => {
|
||||
this.modelOptions = deptResponse.data.modelList || [];
|
||||
if (this.modelOptions.length > 0) {
|
||||
this.form.modelId = this.modelOptions[0].modelId;
|
||||
} else {
|
||||
this.form.modelId = null;
|
||||
this.$message.warning('该代理商暂无可用车型');
|
||||
// 如果当前选中的运营区或车型不在新的选项中,清空选择
|
||||
if (!this.areaOptions.find(area => area.areaId === this.form.areaId)) {
|
||||
this.form.areaId = null;
|
||||
}
|
||||
if (!this.modelOptions.find(model => model.modelId === this.form.modelId)) {
|
||||
this.form.modelId = null;
|
||||
}
|
||||
|
||||
// 如果有选项且当前未选择,则自动选择第一个
|
||||
if (this.areaOptions.length > 0 && !this.form.areaId) {
|
||||
this.form.areaId = this.areaOptions[0].areaId;
|
||||
}
|
||||
if (this.modelOptions.length > 0 && !this.form.modelId) {
|
||||
this.form.modelId = this.modelOptions[0].modelId;
|
||||
}
|
||||
|
||||
}).catch(() => {
|
||||
this.areaOptions = [];
|
||||
this.modelOptions = [];
|
||||
this.form.areaId = null;
|
||||
this.form.modelId = null;
|
||||
}).finally(() => {
|
||||
this.isUpdating = false;
|
||||
});
|
||||
} else {
|
||||
// 如果已有代理商,则使用现有的车型列表
|
||||
this.modelOptions = response.data.modelList || [];
|
||||
if (!this.form.modelId && this.modelOptions.length > 0) {
|
||||
this.form.modelId = this.modelOptions[0].modelId;
|
||||
} else if (this.modelOptions.length === 0) {
|
||||
// 当代理商为空时,加载所有运营区
|
||||
this.isUpdating = true;
|
||||
listArea(this.queryParams2).then((response) => {
|
||||
this.areaOptions = response.rows || [];
|
||||
this.form.areaId = null;
|
||||
this.form.modelId = null;
|
||||
this.$message.warning('该运营区暂无可用车型');
|
||||
}
|
||||
this.modelOptions = [];
|
||||
}).finally(() => {
|
||||
this.isUpdating = false;
|
||||
});
|
||||
}
|
||||
}).finally(() => {
|
||||
this.isUpdating = false;
|
||||
});
|
||||
} else {
|
||||
// 清空车型,但保留代理商
|
||||
this.form.modelId = null;
|
||||
this.modelOptions = [];
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
/** 当选择车型时调用 */
|
||||
handleModelChange(val) {
|
||||
// 移除车型变化时对其他字段的影响
|
||||
if (!val) {
|
||||
this.form.modelId = null;
|
||||
}
|
||||
},
|
||||
/** 当选择运营区时调用 */
|
||||
handleAreaChange(val) {
|
||||
if (!this.isUpdating) {
|
||||
if (val) {
|
||||
this.isUpdating = true;
|
||||
selectDeptByAreaId(val).then((response) => {
|
||||
// 只有在代理商为空时,才设置代理商
|
||||
if (!this.form.deptId && response.data.sysDept) {
|
||||
this.form.deptId = response.data.sysDept.deptId;
|
||||
|
||||
// 获取该代理商下的车型列表
|
||||
selectAreaListByDeptId(this.form.deptId).then((deptResponse) => {
|
||||
this.modelOptions = deptResponse.data.modelList || [];
|
||||
if (this.modelOptions.length > 0) {
|
||||
this.form.modelId = this.modelOptions[0].modelId;
|
||||
} else {
|
||||
this.form.modelId = null;
|
||||
this.$message.warning('该代理商暂无可用车型');
|
||||
}
|
||||
});
|
||||
} else {
|
||||
// 如果已有代理商,则使用现有的车型列表
|
||||
this.modelOptions = response.data.modelList || [];
|
||||
if (!this.form.modelId && this.modelOptions.length > 0) {
|
||||
this.form.modelId = this.modelOptions[0].modelId;
|
||||
} else if (this.modelOptions.length === 0) {
|
||||
this.form.modelId = null;
|
||||
this.$message.warning('该运营区暂无可用车型');
|
||||
}
|
||||
}
|
||||
}).finally(() => {
|
||||
this.isUpdating = false;
|
||||
});
|
||||
} else {
|
||||
// 清空车型,但保留代理商
|
||||
this.form.modelId = null;
|
||||
this.modelOptions = [];
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/** 当选择车型时调用 */
|
||||
handleModelChange(val) {
|
||||
// 移除车型变化时对其他字段的影响
|
||||
if (!val) {
|
||||
this.form.modelId = null;
|
||||
}
|
||||
},
|
||||
|
||||
// 处理硬件版本变化
|
||||
handleHardwareVersionChange(val) {
|
||||
|
@ -1343,39 +1345,53 @@ handleAreaChange(val) {
|
|||
|
||||
getDevice(deviceId).then((response) => {
|
||||
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) {
|
||||
// 重置运营区和车型选项
|
||||
this.modelOptions = [];
|
||||
this.areaOptions = [];
|
||||
|
||||
// 如果是管理员,加载所有运营区
|
||||
if (this.userName === 'admin') {
|
||||
listArea(this.queryParams2).then((response) => {
|
||||
this.areaOptions = response.rows || [];
|
||||
});
|
||||
}
|
||||
|
||||
this.open = true;
|
||||
this.title = "修改设备";
|
||||
this.isUpdating = false;
|
||||
} else {
|
||||
// 有绑定代理商,获取对应的运营区和车型
|
||||
selectAreaListByDeptId(response.data.deptId).then((res) => {
|
||||
// 方案1: 使用Vue.set确保响应式更新
|
||||
setTimeout(() => {
|
||||
console.log('=调用了11');
|
||||
this.modelOptions = res.data.modelList || [];
|
||||
this.areaOptions = res.data.areaList || [];
|
||||
|
||||
// 如果当前选中的运营区或车型不在新的选项中,清空选择
|
||||
if (this.areaOptions.length > 0 && !this.areaOptions.find(area => area.areaId === this.form.areaId)) {
|
||||
this.form.areaId = null;
|
||||
}
|
||||
if (this.modelOptions.length > 0 && !this.modelOptions.find(model => model.modelId === this.form.modelId)) {
|
||||
this.form.modelId = null;
|
||||
}
|
||||
|
||||
this.$set(this, 'modelOptions', []);
|
||||
this.$set(this, 'areaOptions', []);
|
||||
this.$set(this, 'modelOptions', res.data.modelList);
|
||||
this.$set(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
|
||||
}).catch(() => {
|
||||
// 获取失败时也显示弹窗,但清空选项
|
||||
this.modelOptions = [];
|
||||
this.areaOptions = [];
|
||||
this.open = true;
|
||||
this.title = "修改设备";
|
||||
}).finally(() => {
|
||||
this.isUpdating = false;
|
||||
});
|
||||
|
||||
}
|
||||
}).catch(() => {
|
||||
this.isUpdating = false;
|
||||
this.$modal.msgError("获取设备信息失败");
|
||||
});
|
||||
},
|
||||
handleListing(row) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user