Files
admin-sjzx/src/views/pqs/supervise/electricalEnergy/components1/testQuestions.vue
2024-05-21 16:27:27 +08:00

118 lines
3.9 KiB
Vue

<template>
<!-- <div> 普测结果 发起预告警单</div> -->
<TableHeader datePicker ref='TableHeaderRef'>
</TableHeader>
<Table ref='tableRef' />
<testQuestionsForm ref='testQuestionsFormRef' />
</template>
<script setup lang='ts'>
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 testQuestionsForm from './form/testQuestionsForm.vue'
import { initiateWarningLeaflet } from '@/api/supervision-boot/survey'
import { ElMessage } from 'element-plus'
const tableRef = ref()
const TableHeaderRef = ref()
const testQuestionsFormRef = ref()
const tableStore = new TableStore({
url: '/supervision-boot/generalSurvey/pageProblemSubstationBySurvey',
publicHeight: 65,
method: 'POST',
column: [
{
title: '序号',
type: 'seq',
align: 'center',
width: 60,
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
},
{ field: 'orgName', title: '单位', minWidth: 120 },
{ field: 'subName', title: '变电站', minWidth: 120 },
{ field: 'planName', title: '普测计划名称', minWidth: 120 },
{ field: 'planCreateTime', title: '计划生成时间', minWidth: 100 },
{ field: 'planStartTime', title: '计划开始时间', minWidth: 100 },
{ field: 'planEndTime', title: '计划结束时间', minWidth: 100 },
{ field: 'planComplateTime', title: '实际完成时间', minWidth: 100 },
{ field: 'leader', title: '测试负责人', minWidth: 120 },
{
title: '操作',
minWidth: '180',
align: 'center',
render: 'buttons',
fixed: 'right',
buttons: [
// {
// name: 'edit',
// title: '附件预览',
// type: 'primary',
// icon: 'el-icon-Open',
// render: 'confirmButton',
//
// click: row => {}
// },
{
name: 'edit',
title: '发起告警单',
type: 'warning',
icon: 'el-icon-Open',
render: 'confirmButton',
disabled: row => {
return row.initiateWarningFlag == 1
},
popconfirm: {
confirmButtonText: '确认',
cancelButtonText: '取消',
confirmButtonType: 'primary',
title: '请确认发起发起告警单!'
},
click: row => {
initiateAlarm(row.planNo,row.subId)
}
},
{
name: 'edit',
title: '查看告警单',
type: 'primary',
icon: 'el-icon-Open',
render: 'confirmButton',
disabled: row => {
return row.initiateWarningFlag == 0
},
click: row => {
}
}
]
}
],
beforeSearchFun: () => {
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
tableStore.table.params.currentPage = tableStore.table.params.pageNum
}
})
provide('tableStore', tableStore)
onMounted(() => {
tableStore.index()
})
/**
* 发起告警单
*/
const initiateAlarm = async (id: string,subId:string) => {
await initiateWarningLeaflet(id,subId)
ElMessage.success('发起告警成功!')
// 加载数据
tableStore.index()
}
</script>
<style scoped lang='scss'></style>