This commit is contained in:
邱贞招 2025-01-24 22:27:42 +08:00
parent 0746100243
commit 318f178c3d
2 changed files with 175 additions and 160 deletions

View File

@ -44,10 +44,9 @@
<div class="info-row"> <div class="info-row">
<div class="info-item"> <div class="info-item">
<span class="label">电门</span> <span class="label">电门</span>
<el-tag :type="deviceInfo.quality === '1' ? 'success' : 'danger'" size="small"> <el-tag :type="deviceInfo.quality === 1 ? 'success' : 'danger'" size="small">
{{ deviceInfo.quality === '1' ? '开' : '关' }} {{ deviceInfo.quality === 1 ? '开' : '关' }}
</el-tag> </el-tag>
<!-- <span class="value">{{ deviceInfo.quality || '-' }}</span> -->
</div> </div>
<div class="info-item"> <div class="info-item">
<span class="label">锁信号</span> <span class="label">锁信号</span>

View File

@ -840,100 +840,102 @@ export default {
} }
}, },
/** 当选择代理商时调用 */ /** 当选择代理商时调用 */
handleDeptChange(val) { handleDeptChange(val) {
if (!this.isUpdating) { if (!this.isUpdating) {
if (val) { if (val) {
this.isUpdating = true; this.isUpdating = true;
selectAreaListByDeptId(val).then((response) => { selectAreaListByDeptId(val).then((response) => {
// //
this.areaOptions = response.data.areaList || []; this.areaOptions = response.data.areaList || [];
this.modelOptions = response.data.modelList || []; this.modelOptions = response.data.modelList || [];
// // ,
this.form.areaId = null; if (!this.areaOptions.find(area => area.areaId === this.form.areaId)) {
this.form.modelId = null; this.form.areaId = 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.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 { } else {
// 使 // ,
this.modelOptions = response.data.modelList || []; this.isUpdating = true;
if (!this.form.modelId && this.modelOptions.length > 0) { listArea(this.queryParams2).then((response) => {
this.form.modelId = this.modelOptions[0].modelId; this.areaOptions = response.rows || [];
} else if (this.modelOptions.length === 0) { this.form.areaId = null;
this.form.modelId = 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) { handleAreaChange(val) {
// if (!this.isUpdating) {
if (!val) { if (val) {
this.form.modelId = null; 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) { handleHardwareVersionChange(val) {
@ -1343,39 +1345,53 @@ handleAreaChange(val) {
getDevice(deviceId).then((response) => { getDevice(deviceId).then((response) => {
this.form = response.data; this.form = response.data;
this.selectHardwareVersion(response.data.hardwareVersionId);
this.selectHardwareVersion(response.data.hardwareVersionId) //
// this.fetchData3(response.data.areaId) if (!response.data.deptId) {
// this.fetchData(response.data.deptId) //
// this.open = true; this.modelOptions = [];
// this.title = "1"; 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) => { selectAreaListByDeptId(response.data.deptId).then((res) => {
// 1: 使Vue.set this.modelOptions = res.data.modelList || [];
setTimeout(() => { this.areaOptions = res.data.areaList || [];
console.log('=调用了11');
// ,
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.open = true;
this.title = "修改设备"; this.title = "修改设备";
}, 800); }).catch(() => {
// ,
this.modelOptions = [];
// 2: 使nextTickDOM this.areaOptions = [];
// this.$nextTick(() => { this.open = true;
// this.modelOptions = res.data.modelList; this.title = "修改设备";
// this.areaOptions = res.data.areaList;
// },600);
// setTimeout$forceUpdate
}).finally(() => { }).finally(() => {
this.isUpdating = false; this.isUpdating = false;
}); });
}
}).catch(() => {
this.isUpdating = false;
this.$modal.msgError("获取设备信息失败");
}); });
}, },
handleListing(row) { handleListing(row) {