预警分析

This commit is contained in:
hongchao 2026-01-16 15:00:17 +08:00
parent b6cf74026d
commit 2246ce4517
2 changed files with 11 additions and 4 deletions

View File

@ -256,8 +256,9 @@ export default {
if (res.code === 200) {
this.$modal.msgSuccess('审核成功')
setTimeout(() => {
const obj = { path: '/business-examine/receive-apply' }
this.$tab.closeOpenPage(obj)
// const obj = { path: '/business-examine/receive-apply' }
// this.$tab.closeOpenPage(obj)
this.$tab.closePage()
}, 500)
}
},

View File

@ -56,7 +56,7 @@
</el-select>
</el-form-item>
<el-form-item label="设备状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择机规格型号" style="width: 240px">
<el-select v-model="queryParams.status" placeholder="请选择机设备状态" style="width: 240px">
<el-option
v-for="item in statusList"
:key="item.status"
@ -182,7 +182,13 @@ export default {
dialogList: [],
typeList: [],
typeIdList: [],
statusList: [{ label: '正常', status: 0 }, { label: '超期', status: 1 }]
statusList: [
{ label: '正常', status: 0 },
{ label: '超期', status: 1 },
{ label: '超期7天内', status: 2 },
{ label: '超期15天内', status: 3 },
{ label: '超期30天内', status: 4 },
]
}
},
created() {