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

240 lines
8.9 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-03-18 19:43:55 +08:00
<el-select v-model="tableStore.table.params.problemSources" 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-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-select v-model="tableStore.table.params.reportProcess" 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-03-18 19:43:55 +08:00
<el-select v-model="tableStore.table.params.reportProcessStatus" 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-03-18 19:43:55 +08:00
<!-- <el-button icon="el-icon-EditPen" type="primary" @click="filling">填报</el-button> -->
2024-03-12 16:15:45 +08:00
<el-button icon="el-icon-Delete" type="primary">删除</el-button>
2024-03-18 19:43:55 +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-03-18 19:43:55 +08:00
<NewlyAdd v-if="showNewlyAdded" @handleClose="handleClose" @onSubmit="onSubmit" />
<!-- 填报 -->
<Filling ref="FillingRef" />
<!-- 详情 -->
<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-03-18 19:43:55 +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
// }
// },
2024-03-12 16:15:45 +08:00
{
title: '详情',
width: '120',
render: 'buttons',
buttons: [
{
name: 'edit',
title: '查看',
type: 'primary',
2024-03-18 19:43:55 +08:00
// disabled: row => {
// return row.reportProcess != 'Not_Reported' && row.reportProcess != 'Archived'
// },
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)
}
},
{
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-03-18 19:43:55 +08:00
]
2024-03-12 16:15:45 +08:00
})
2024-03-18 19:43:55 +08:00
tableStore.table.params.orgNo = dictData.state.area[0].id
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 }
])
setTimeout(() => {
tableStore.table.params.dataType = TableHeaderRef.value.datePickerRef.interval
tableStore.table.params.dataDate = TableHeaderRef.value.datePickerRef.timeValue[0]
tableStore.index()
}, 100)
2024-03-12 16:15:45 +08:00
})
// 新增
const add = () => {
showNewlyAdded.value = true
}
const onSubmit = () => {
2024-03-18 19:43:55 +08:00
tableStore.index()
}
// 填报
const filling = () => {
if (tableStore.table.selection.length == 1) {
FillingRef.value.open(tableStore.table.selection[0])
if (tableStore.table.selection[0].reportProcess == 'Not_Reported') {
// 原因分析
// this.showCauseAnalysisJP = true
// setTimeout(() => {
// this.$refs.CauseAnalysisJP.causeAnalysis = true
// }, 0)
} else if (
tableStore.table.selection[0].reportProcess == 'Cause_Analysis' &&
tableStore.table.selection[0].reportProcessStatus == 'Success'
) {
// 计划整改措施
// this.showPlannedRectification = true
// setTimeout(() => {
// this.$refs.PlannedRectification.rectificationMeasures = true
// }, 0)
} else if (
tableStore.table.selection[0].reportProcess == 'Plan_Measures' &&
tableStore.table.selection[0].reportProcessStatus == 'Success'
) {
// 实际采取措施
// this.showActualMeasures = true
// setTimeout(() => {
// this.$refs.ActualMeasures.rectificationMeasures = true
// }, 0)
} else if (
tableStore.table.selection[0].reportProcess == 'Actual_Measures' &&
tableStore.table.selection[0].reportProcessStatus == 'Success'
) {
// 成效分析
// this.showEffectiveness = true
// setTimeout(() => {
// this.$refs.Effectiveness.effectivenessAnalysis = true
// }, 0)
} else if (
tableStore.table.selection[0].reportProcess == 'Insights' &&
tableStore.table.selection[0].reportProcessStatus == 'Success'
) {
ElMessage.warning('填报已结束,无需填报!')
} else {
ElMessage.warning('审核未通过,不能进行填报!')
}
} else {
ElMessage.warning('请选择1条数据,进行填报!')
}
}
// 关闭弹框
const handleClose = () => {
showNewlyAdded.value = false
}
2024-03-12 16:15:45 +08:00
</script>