Compare commits

..

2 Commits

Author SHA1 Message Date
d67a1de321 设备报警查询未处理数据 2024-11-06 15:04:58 +08:00
b3e2b4cb1c 报警规则和报警处理界面优化 2024-11-06 09:01:43 +08:00
3 changed files with 113 additions and 106 deletions

View File

@ -116,6 +116,7 @@ public interface EquipAlarmDataMapper extends BaseMapperX<EquipAlarmDataDO> {
.leftJoin(ComponentInfoDO.class, ComponentInfoDO::getComponentId, EquipAlarmDataDO::getComponentId)
.eq(EquipAlarmDataDO::getEquipId, equipId)
.eq(EquipAlarmDataDO::getAlarmType, alarmType)
.eq(EquipAlarmDataDO::getStatus, 0)
);
}

View File

@ -369,7 +369,6 @@
@click="handelPatrolPlan"
>
点检方案提交</el-button>
<el-button
<el-button
v-if="showExclusivePatrolPlanSubmit"
type="success"
@ -397,14 +396,15 @@
width="40%"
:close-on-click-modal="false"
>
<el-card class="box-card">
<el-form
:model="detailForm"
v-loading="detailLoading"
label-width="100px"
label-width="110px"
>
<el-col :span="12">
<el-form-item
label="客户名称"
label="客户名称"
prop="customerName"
>
{{ detailForm.customerName }}
@ -412,7 +412,7 @@
</el-col>
<el-col :span="12">
<el-form-item
label="机床型号"
label="机床型号"
prop="equipNo"
>
{{ detailForm.modelName }}
@ -420,7 +420,7 @@
</el-col>
<el-col :span="12">
<el-form-item
label="设备编号"
label="设备编号"
prop="equipNo"
>
{{ detailForm.equipNo }}
@ -428,7 +428,7 @@
</el-col>
<el-col :span="12">
<el-form-item
label="规则参数"
label="规则参数"
prop="nameKey"
>
{{ detailForm.nameKey }}
@ -436,7 +436,7 @@
</el-col>
<el-col :span="12">
<el-form-item
label="报警内容"
label="报警内容"
prop="content"
>
{{ detailForm.content }}
@ -444,7 +444,7 @@
</el-col>
<el-col :span="12">
<el-form-item
label="报警值"
label="报警值"
prop="alarmValue"
>
{{ detailForm.alarmValue }}
@ -452,7 +452,7 @@
</el-col>
<el-col :span="12">
<el-form-item
label="首次报警时间"
label="首次报警时间"
prop="firstAlarmTime"
>
{{ parseTime(detailForm.firstAlarmTime) }}
@ -460,7 +460,7 @@
</el-col>
<el-col :span="12">
<el-form-item
label="最新报警时间"
label="最新报警时间"
prop="lastAlarmTime"
>
{{ parseTime(detailForm.lastAlarmTime) }}
@ -468,13 +468,14 @@
</el-col>
<el-col :span="24">
<el-form-item
label="可能故障原因"
label="可能故障原因"
prop="reasonDescription"
>
<div v-html="detailForm.reasonDescription" />
</el-form-item>
</el-col>
</el-form>
</el-card>
</el-dialog>
<!--报警参数趋势查询弹窗-->
@ -526,9 +527,18 @@
style="height:500px"
></div>
</el-dialog>
<alarm-submit-maintenance-patrol-plan-form ref="submitPatrolPlanForm" @child-event="showSubmitButton"/>
<alarm-submit-maintenance-exclusive-patrol-plan-form ref="submitExclusivePatrolPlanForm" @child-event="showSubmitButton"/>
<alarm-submit-maintenance-order-form ref="submitOrderForm" @child-event="showSubmitButton" />
<alarm-submit-maintenance-patrol-plan-form
ref="submitPatrolPlanForm"
@child-event="showSubmitButton"
/>
<alarm-submit-maintenance-exclusive-patrol-plan-form
ref="submitExclusivePatrolPlanForm"
@child-event="showSubmitButton"
/>
<alarm-submit-maintenance-order-form
ref="submitOrderForm"
@child-event="showSubmitButton"
/>
</div>
</template>
@ -656,7 +666,9 @@ export default {
//
this.$router.push("/alarm/equipalarm");
} else {
inspectionInfoApi.isSubmitInspection(this.$route.query.equipAlarmId).then(res=>{
inspectionInfoApi
.isSubmitInspection(this.$route.query.equipAlarmId)
.then((res) => {
if (res.data === null) {
this.showPatrolPlanSubmit = true;
} else if (res.data.status === 1 && !res.data.isExclusive) {
@ -666,7 +678,7 @@ export default {
this.inspectionId = res.data.inspectionId;
this.showMaintanenceSubmit = true;
}
})
});
}
},
cardChange(e) {

View File

@ -789,10 +789,4 @@ export default {
},
};
</script>
<style scoped>
.form-item-border {
border-bottom: 1px solid #e4e7ed; /* 你可以调整颜色和宽度 */
padding-bottom: 10px; /* 可选:增加底部间距 */
margin-bottom: 10px; /* 可选:增加外边距 */
}
</style>