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

View File

@ -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: 使nextTickDOM
// 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) {