Files
admin-sjzx/src/views/pqs/supervise/electricalEnergy/components/maintenance.vue

232 lines
8.5 KiB
Vue
Raw Normal View History

2024-03-12 16:15:45 +08:00
<template>
<TableHeader area datePicker ref="TableHeaderRef">
<template #select>
<el-form-item label="问题来源">
2024-04-02 16:43:18 +08:00
<el-select v-model="tableStore.table.params.problemSources" clearable placeholder="请选择问题来源">
2024-03-12 16:15:45 +08:00
<el-option
2024-03-18 19:43:55 +08:00
v-for="item in problemData"
2024-04-02 16:43:18 +08:00
:key="item.code"
2024-03-18 19:43:55 +08:00
:label="item.name"
2024-04-02 16:43:18 +08:00
:value="item.code"
2024-03-12 16:15:45 +08:00
></el-option>
</el-select>
</el-form-item>
<el-form-item label="填报进度">
2024-04-02 16:43:18 +08:00
<el-select v-model="tableStore.table.params.reportProcess" clearable placeholder="请选择填报进度">
2024-03-12 16:15:45 +08:00
<el-option
2024-03-18 19:43:55 +08:00
v-for="item in fillingProgress"
2024-03-12 16:15:45 +08:00
:key="item.id"
2024-03-18 19:43:55 +08:00
:label="item.name"
2024-03-12 16:15:45 +08:00
:value="item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="审核状态">
2024-04-02 16:43:18 +08:00
<el-select v-model="tableStore.table.params.reportProcessStatus" clearable placeholder="请选择审核状态">
2024-03-12 16:15:45 +08:00
<el-option
2024-03-18 19:43:55 +08:00
v-for="item in auditStatus"
2024-03-12 16:15:45 +08:00
:key="item.id"
2024-03-18 19:43:55 +08:00
:label="item.name"
2024-03-12 16:15:45 +08:00
:value="item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="问题名称">
2024-03-18 19:43:55 +08:00
<el-input
v-model="tableStore.table.params.problemName"
clearable
placeholder="请填写问题名称"
style="width: 100%"
></el-input>
2024-03-12 16:15:45 +08:00
</el-form-item>
</template>
<template #operation>
<el-button icon="el-icon-Plus" type="primary" @click="add">新增</el-button>
2024-04-02 16:43:18 +08:00
<el-button icon="el-icon-SuccessFilled" type="primary">归档</el-button>
<el-button icon="el-icon-PieChart" type="primary">历史审核记录</el-button>
2024-03-12 16:15:45 +08:00
</template>
</TableHeader>
<Table ref="tableRef" />
<!-- 新增 -->
2024-04-02 16:43:18 +08:00
<NewlyAdd v-if="showNewlyAdded" @handleClose="handleClose" @onSubmit="tableStore.index()" />
2024-03-18 19:43:55 +08:00
<!-- 填报 -->
2024-04-02 16:43:18 +08:00
<Filling ref="FillingRef" @onSubmit="tableStore.index()" />
2024-03-18 19:43:55 +08:00
<!-- 详情 -->
<Detail ref="detailRef" />
2024-03-12 16:15:45 +08:00
</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 { ElMessage, ElMessageBox } from 'element-plus'
2024-03-18 19:43:55 +08:00
import { deleteIssues } from '@/api/process-boot/electricitymanagement'
2024-03-12 16:15:45 +08:00
import { useDictData } from '@/stores/dictData'
import NewlyAdd from './NewlyAdd.vue'
2024-03-18 19:43:55 +08:00
import Filling from './filling.vue'
import Detail from './detail.vue'
2024-03-12 16:15:45 +08:00
const dictData = useDictData()
2024-03-18 19:43:55 +08:00
const FillingRef = ref()
2024-03-12 16:15:45 +08:00
const showNewlyAdded = ref(false)
2024-03-12 16:15:45 +08:00
const TableHeaderRef = ref()
2024-03-18 19:43:55 +08:00
const detailRef = ref()
const problemData = dictData.getBasicData('Problem_Sources')
const fillingProgress = dictData.getBasicData('Fill_Progress')
const auditStatus = dictData.getBasicData('Audit_Status')
const tableStore: any = new TableStore({
url: '/process-boot/electricityQuality/getIssues',
2024-03-12 16:15:45 +08:00
publicHeight: 65,
method: 'POST',
column: [
{ width: '60', type: 'checkbox' },
{
field: 'index',
title: '序号',
width: '60',
formatter: (row: any) => {
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
}
},
{ field: 'orgName', title: '所属单位' },
{
field: 'problemSources',
title: '问题来源'
},
{ field: 'powerQualityProblemNo', title: '问题编号' },
{ field: 'problemName', title: '问题名称' },
{ field: 'dataDate', title: '问题新建时间' },
{
2024-04-02 16:43:18 +08:00
field: 'reportProcess',
title: '填报进度',
formatter: (row: any) => {
return fillingProgress.filter(item => item.code == row.cellValue)[0]?.name
}
},
{
field: 'reportProcessStatus',
title: '审核状态',
formatter: (row: any) => {
return auditStatus.filter(item => item.code == row.cellValue)[0]?.name
}
},
{
title: '操作',
width: '150',
2024-03-12 16:15:45 +08:00
render: 'buttons',
buttons: [
{
name: 'edit',
title: '查看',
type: 'primary',
2024-03-18 19:43:55 +08:00
// disabled: row => {
2024-04-02 16:43:18 +08:00
// return !(row.reportProcess != 'Not_Reported' && row.reportProcess != 'Archived')
2024-03-18 19:43:55 +08:00
// },
2024-03-12 16:15:45 +08:00
icon: 'el-icon-Plus',
render: 'basicButton',
2024-03-18 19:43:55 +08:00
click: async row => {
detailRef.value.open(row)
}
},
2024-04-02 16:43:18 +08:00
{
name: 'edit',
title: '填报',
disabled: row => {
return row.reportProcessStatus == 'Auditt'
},
type: 'primary',
icon: 'el-icon-Plus',
render: 'basicButton',
click: row => {
filling(row)
}
},
2024-03-18 19:43:55 +08:00
{
name: 'del',
text: '删除',
type: 'danger',
icon: 'el-icon-Delete',
render: 'confirmButton',
popconfirm: {
confirmButtonText: '确认',
cancelButtonText: '取消',
confirmButtonType: 'danger',
title: '确定删除?'
},
click: row => {
deleteIssues(row.powerQualityProblemNo).then(() => {
ElMessage.success('删除成功')
tableStore.index()
})
}
2024-03-12 16:15:45 +08:00
}
]
}
2024-04-02 16:43:18 +08:00
],
beforeSearchFun: () => {
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
tableStore.table.params.dataDate = tableStore.table.params.searchBeginTime
tableStore.table.params.dataType = TableHeaderRef.value.datePickerRef.interval
}
2024-03-12 16:15:45 +08:00
})
2024-03-18 19:43:55 +08:00
tableStore.table.params.problemName = ''
tableStore.table.params.problemSources = ''
tableStore.table.params.reportProcess = ''
tableStore.table.params.reportProcessStatus = ''
2024-03-12 16:15:45 +08:00
provide('tableStore', tableStore)
onMounted(() => {
2024-03-18 19:43:55 +08:00
TableHeaderRef.value.setDatePicker([
{ label: '年', value: 1 },
{ label: '季', value: 2 },
{ label: '月', value: 3 }
])
2024-04-02 16:43:18 +08:00
tableStore.index()
2024-03-12 16:15:45 +08:00
})
// 新增
const add = () => {
showNewlyAdded.value = true
}
2024-04-02 16:43:18 +08:00
2024-03-18 19:43:55 +08:00
// 填报
2024-04-02 16:43:18 +08:00
const filling = (row: any) => {
FillingRef.value.open(row)
if (row.reportProcess == 'Not_Reported') {
// 原因分析
// this.showCauseAnalysisJP = true
// setTimeout(() => {
// this.$refs.CauseAnalysisJP.causeAnalysis = true
// }, 0)
} else if (row.reportProcess == 'Cause_Analysis' && row.reportProcessStatus == 'Success') {
// 计划整改措施
// this.showPlannedRectification = true
// setTimeout(() => {
// this.$refs.PlannedRectification.rectificationMeasures = true
// }, 0)
} else if (row.reportProcess == 'Plan_Measures' && row.reportProcessStatus == 'Success') {
// 实际采取措施
// this.showActualMeasures = true
// setTimeout(() => {
// this.$refs.ActualMeasures.rectificationMeasures = true
// }, 0)
} else if (row.reportProcess == 'Actual_Measures' && row.reportProcessStatus == 'Success') {
// 成效分析
// this.showEffectiveness = true
// setTimeout(() => {
// this.$refs.Effectiveness.effectivenessAnalysis = true
// }, 0)
} else if (row.reportProcess == 'Insights' && row.reportProcessStatus == 'Success') {
ElMessage.warning('填报已结束,无需填报!')
2024-03-18 19:43:55 +08:00
} else {
2024-04-02 16:43:18 +08:00
ElMessage.warning('审核未通过,不能进行填报!')
2024-03-18 19:43:55 +08:00
}
}
// 关闭弹框
const handleClose = () => {
showNewlyAdded.value = false
}
2024-03-12 16:15:45 +08:00
</script>