Files
admin-sjzx/src/views/pqs/supervise/electricalEnergy/components1/testQuestions.vue

188 lines
5.5 KiB
Vue
Raw Normal View History

2024-05-16 14:00:49 +08:00
<template>
<!-- <div> 普测结果 发起预告警单</div> -->
<TableHeader area datePicker nextFlag theCurrentTime ref="TableHeaderRef">
<template v-slot:select>
<el-form-item label="计划名称">
2024-10-31 15:47:02 +08:00
<el-input style="width: 200px" v-model="tableStore.table.params.searchValue" clearable
placeholder="请输入计划名称"></el-input>
</el-form-item>
<el-form-item label="是否解决">
<el-select v-model="tableStore.table.params.dealState" clearable placeholder="请选择是否解决">
<el-option v-for="item in dealStateList" :key="item.value" :label="item.label"
:value="item.value"></el-option>
</el-select>
</el-form-item>
</template>
</TableHeader>
2024-10-31 15:47:02 +08:00
<Table ref="tableRef" />
<testQuestionsForm ref="testQuestionsFormRef" />
<!-- 详情 -->
<el-dialog draggable v-model="dialogVisible" v-if="dialogVisible" title="详情" width="1000">
2024-10-31 15:47:02 +08:00
<detail :id="detailId" :flag="flag" />
</el-dialog>
2024-05-16 14:00:49 +08:00
</template>
2024-06-05 15:08:24 +08:00
<script setup lang="ts">
2024-10-31 15:47:02 +08:00
import { ref, onMounted, provide, nextTick } from 'vue'
2024-05-16 14:00:49 +08:00
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'
2024-10-31 15:47:02 +08:00
import { initiateWarningLeaflet } from '@/api/supervision-boot/survey/test'
import { ElMessage, ElMessageBox } from 'element-plus'
import { useRouter } from 'vue-router'
import { useDictData } from '@/stores/dictData'
2024-07-23 15:03:48 +08:00
import detail from '@/views/pqs/supervise/harmonicSurvey/test/detail.vue'
2024-06-05 15:08:24 +08:00
const dictData = useDictData()
2024-10-31 15:47:02 +08:00
const { push } = useRouter()
2024-05-22 16:30:34 +08:00
const router = useRouter() // 路由对象
2024-05-16 14:00:49 +08:00
const tableRef = ref()
2024-10-31 15:47:02 +08:00
const flag = ref(false)
2024-05-16 14:00:49 +08:00
const TableHeaderRef = ref()
2024-07-23 15:03:48 +08:00
const dialogVisible = ref(false)
const detailId = ref('')
2024-05-16 14:00:49 +08:00
const testQuestionsFormRef = ref()
2024-10-31 15:47:02 +08:00
const dealStateList = ref([
{
label: '未解决',
value: '0'
},
2024-12-06 16:11:33 +08:00
2024-10-31 15:47:02 +08:00
])
2024-05-16 14:00:49 +08:00
const tableStore = new TableStore({
url: '/supervision-boot/surveyTest/pageProblemSurvey',
publicHeight: 65,
method: 'POST',
column: [
{
title: '序号',
align: 'center',
width: 80,
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
},
2024-10-31 15:47:02 +08:00
{ field: 'planName', title: '计划名称', minWidth: 120 },
{ field: 'deptName', title: '负责单位', minWidth: 120 },
{ field: 'substationName', title: '变电站', minWidth: 120 },
{ field: 'planStartTime', title: '计划开始时间', minWidth: 100 },
{ field: 'planEndTime', title: '计划结束时间', minWidth: 100 },
{ field: 'completeTime', title: '实际完成时间', minWidth: 100 },
{ field: 'completeBy', title: '测试负责人', minWidth: 120 },
{
field: 'createBy',
title: '填报人',
minWidth: 80,
formatter: (row: any) => {
return dictData.state.userList.filter(item => item.id == row.cellValue)[0]?.name
}
},
2024-10-31 15:47:02 +08:00
{
field: 'dealState',
title: '是否解决',
minWidth: 100,
render: 'tag',
custom: {
0: 'warning',
1: 'primary',
2025-01-07 16:32:42 +08:00
null: 'info'
2024-10-31 15:47:02 +08:00
},
replaceValue: {
0: '未解决',
1: '已解决',
2025-01-07 16:32:42 +08:00
null: '/'
2024-10-31 15:47:02 +08:00
}
},
{
title: '操作',
minWidth: '180',
align: 'center',
render: 'buttons',
fixed: 'right',
buttons: [
2024-06-05 15:08:24 +08:00
{
name: 'edit',
title: '详情',
type: 'primary',
icon: 'el-icon-Open',
render: 'basicButton',
click: async row => {
2024-10-31 15:47:02 +08:00
flag.value = row.dealState == 1 ? true : false
dialogVisible.value = true
detailId.value = row.id
}
2024-06-05 15:08:24 +08:00
},
2024-05-16 14:00:49 +08:00
{
name: 'edit',
title: '发起告警单',
type: 'warning',
icon: 'el-icon-Open',
render: 'basicButton',
disabled: row => {
2024-10-31 15:47:02 +08:00
return row.dealState != 0
},
2024-07-23 15:03:48 +08:00
click: async row => {
2024-10-31 15:47:02 +08:00
const { value } = await ElMessageBox.prompt('', '整改意见', {
confirmButtonText: '确定',
cancelButtonText: '取消',
2024-06-20 16:54:19 +08:00
inputType: 'textarea',
inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
inputErrorMessage: '请输入整改意见'
})
2024-10-31 15:47:02 +08:00
initiateWarningLeaflet({ id: row.id, reformAdvice: value }).then(res => {
ElMessage.success('发起告警成功!')
tableStore.index()
})
}
},
{
name: 'edit',
title: '查看告警单',
type: 'primary',
icon: 'el-icon-Open',
render: 'basicButton',
disabled: row => {
return row.initiateWarningFlag == 0
},
click: row => {
router.push({
name: 'supervision/supervision/manage',
query: {
type: 1,
t: Date.now()
}
})
}
2024-05-16 14:00:49 +08:00
}
]
2024-05-16 14:00:49 +08:00
}
],
beforeSearchFun: () => {
tableStore.table.params.currentPage = tableStore.table.params.pageNum
}
2024-05-16 14:00:49 +08:00
})
2024-10-31 15:47:02 +08:00
tableStore.table.params.dealState = ''
tableStore.table.params.searchValue = ''
2024-05-16 14:00:49 +08:00
provide('tableStore', tableStore)
onMounted(() => {
tableStore.index()
2024-05-16 14:00:49 +08:00
})
2024-05-21 16:27:27 +08:00
/**
* 发起告警单
*/
const initiateAlarm = async (id: string) => {
await initiateWarningLeaflet(id)
ElMessage.success('发起告警成功!')
// 加载数据
tableStore.index()
2024-05-16 14:00:49 +08:00
}
</script>
2024-06-05 15:08:24 +08:00
<style scoped lang="scss"></style>