Files
admin-sjzx/src/views/pqs/supervise/technology/components/alarm.vue

184 lines
5.7 KiB
Vue
Raw Normal View History

2024-05-15 21:33:54 +08:00
<template>
2024-05-22 16:05:51 +08:00
<TableHeader datePicker ref='TableHeaderRef'>
2024-05-15 21:33:54 +08:00
<template #operation>
2024-05-21 16:27:27 +08:00
2024-05-22 16:05:51 +08:00
<!-- <el-button icon="el-icon-Plus" type="primary" @click="add">新增</el-button>-->
<!-- <el-button icon="el-icon-Delete" type="primary">删除</el-button>-->
<!-- <el-button icon="el-icon-Download" type="primary">导出</el-button>-->
2024-05-21 16:27:27 +08:00
2024-05-15 21:33:54 +08:00
</template>
2024-05-22 16:05:51 +08:00
</TableHeader>
<!--表格-->
<Table ref='tableRef' />
<!--弹框-->
<feedback-popup ref='feedbackPopup' />
2024-05-15 21:33:54 +08:00
</template>
2024-05-22 16:05:51 +08:00
<script setup lang='ts'>
2024-05-15 21:33:54 +08:00
import { ref, onMounted, provide, nextTick } from 'vue'
import TableStore from '@/utils/tableStore'
import Table from '@/components/table/index.vue'
import TableHeader from '@/components/table/header/index.vue'
import { ElMessage, ElMessageBox } from 'element-plus'
2024-05-22 16:05:51 +08:00
import FeedbackPopup from '@/views/pqs/supervise/technology/feedbackPopup.vue'
import { useRouter } from 'vue-router'
const { push } = useRouter()
const feedbackPopup = ref()
2024-05-15 21:33:54 +08:00
const tableRef = ref()
const TableHeaderRef = ref()
const tableStore = new TableStore({
2024-05-21 16:27:27 +08:00
url: '/supervision-boot/warningLeaflet/alarmPageData',
2024-05-15 21:33:54 +08:00
publicHeight: 65,
method: 'POST',
column: [
2024-05-21 16:27:27 +08:00
{
2024-05-15 21:33:54 +08:00
title: '序号',
type: 'seq',
align: 'center',
width: 60,
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
},
2024-05-22 16:05:51 +08:00
{
field: 'problemType', title: '告警单问题来源', minWidth: '150',
2024-05-21 16:27:27 +08:00
render: 'tag',
custom: {
1: 'warning',
2: 'warning',
3: 'warning',
4: 'warning'
},
replaceValue: {
1: '技术监督计划',
2: '在线监测超标问题',
3: '用户投诉问题',
4: '现场测试超标问题'
}
},
{ field: 'leafletName', title: '单据名称', minWidth: '150' },
2024-05-22 16:05:51 +08:00
{
field: 'status', title: '告警单状态', minWidth: '150',
2024-05-21 16:27:27 +08:00
render: 'tag',
custom: {
1: 'primary',
2: 'success',
3: 'danger',
4: 'warning',
2024-05-22 16:05:51 +08:00
5: 'primary'
2024-05-21 16:27:27 +08:00
},
replaceValue: {
1: '审批中',
2: '审批通过',
3: '审批不通过',
4: '已取消',
5: '待反馈'
}
},
{ field: 'createTime', title: '创建时间', minWidth: '150' },
2024-05-15 21:33:54 +08:00
{
title: '操作',
2024-05-24 09:49:40 +08:00
minWidth: '220',
2024-05-15 21:33:54 +08:00
align: 'center',
render: 'buttons',
fixed: 'right',
buttons: [
2024-05-24 09:49:40 +08:00
{
name: 'productSetting',
title: '发送督办单',
type: 'primary',
icon: 'el-icon-EditPen',
render: 'basicButton',
click: row => {
// handleAudit(row.processInstanceId)
ElMessage.warning("待打通生成管理系统接口!")
}
},
2024-05-15 21:33:54 +08:00
{
name: 'productSetting',
2024-05-22 16:05:51 +08:00
title: '问题反馈',
2024-05-15 21:33:54 +08:00
type: 'primary',
icon: 'el-icon-EditPen',
render: 'basicButton',
2024-05-21 16:27:27 +08:00
disabled: row => {
return row.status !== 5
},
2024-05-15 21:33:54 +08:00
click: row => {
2024-05-22 16:05:51 +08:00
feedbackPopup.value.open('填报反馈单',row.id,row.status)
2024-05-15 21:33:54 +08:00
}
},
2024-05-24 09:49:40 +08:00
2024-05-21 16:27:27 +08:00
{
name: 'productSetting',
title: '流程详情',
type: 'primary',
icon: 'el-icon-EditPen',
render: 'basicButton',
disabled: row => {
return row.status == 5
},
click: row => {
2024-05-22 16:05:51 +08:00
handleAudit(row.processInstanceId)
2024-05-21 16:27:27 +08:00
}
},
2024-05-15 21:33:54 +08:00
{
name: 'edit',
2024-05-21 16:27:27 +08:00
title: '重新发起',
2024-05-15 21:33:54 +08:00
type: 'warning',
icon: 'el-icon-Open',
render: 'basicButton',
2024-05-21 16:27:27 +08:00
disabled: row => {
return row.status == 1 || row.status == 2 || row.status == 4 || row.status == 5
},
2024-05-15 21:33:54 +08:00
click: row => {
2024-05-22 16:05:51 +08:00
// deviceQuitPopup.value.open('重新发起', row)
2024-05-15 21:33:54 +08:00
}
},
2024-05-21 16:27:27 +08:00
{
name: 'cancel',
title: '取消',
type: 'danger',
icon: 'el-icon-Open',
render: 'basicButton',
disabled: row => {
return row.status == 3 || row.status == 2 || row.status == 4 || row.status == 5
},
click: row => {
// cancelLeave(row)
}
}
2024-05-15 21:33:54 +08:00
]
}
],
beforeSearchFun: () => {
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
tableStore.table.params.currentPage = tableStore.table.params.pageNum
}
})
tableStore.table.params.status = ''
provide('tableStore', tableStore)
onMounted(() => {
tableStore.index()
})
2024-05-22 16:05:51 +08:00
/** 流程实例详情 */
const handleAudit = (instanceId: any) => {
push({
name: 'BpmProcessInstanceDetail',
query: {
id: instanceId
}
})
}
2024-05-15 21:33:54 +08:00
</script>
2024-05-22 16:05:51 +08:00
<style scoped lang='scss'></style>