2024-03-06 16:14:09 +08:00
|
|
|
<template>
|
2024-03-13 20:33:01 +08:00
|
|
|
<TableHeader area datePicker ref="TableHeaderRef">
|
|
|
|
|
<template #select>
|
2024-03-22 16:18:08 +08:00
|
|
|
<el-form-item label="计划状态">
|
|
|
|
|
<el-select v-model="tableStore.table.params.status" placeholder="请选择计划状态">
|
|
|
|
|
<el-option v-for="item in list" :key="item.id" :label="item.name" :value="item.id"></el-option>
|
2024-03-13 20:33:01 +08:00
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</template>
|
|
|
|
|
<template #operation>
|
|
|
|
|
<el-button icon="el-icon-Plus" type="primary" @click="add">新增计划</el-button>
|
2024-03-22 16:18:08 +08:00
|
|
|
<el-button icon="el-icon-Stamp" type="primary" @click="planReviewFn">提交审核</el-button>
|
2024-03-13 20:33:01 +08:00
|
|
|
<el-button icon="el-icon-Download" type="primary">导出</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</TableHeader>
|
|
|
|
|
<Table ref="tableRef" />
|
2024-03-19 16:38:02 +08:00
|
|
|
<!-- 新增 -->
|
2024-03-22 16:18:08 +08:00
|
|
|
<planAdd ref="planAddRef" @onsubmit="tableStore.index()" />
|
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-22 16:18:08 +08:00
|
|
|
import { planStatus } from '@/api/process-boot/generalTest'
|
2024-03-19 16:38:02 +08:00
|
|
|
import planAdd from './planAdd.vue'
|
2024-03-12 16:15:45 +08:00
|
|
|
import { useDictData } from '@/stores/dictData'
|
2024-03-06 16:14:09 +08:00
|
|
|
|
2024-03-19 16:38:02 +08:00
|
|
|
import { initDetpStataionTree } from '@/api/process-boot/generalTest'
|
2024-03-12 16:15:45 +08:00
|
|
|
const dictData = useDictData()
|
2024-03-22 16:18:08 +08:00
|
|
|
const list = [
|
2024-03-12 16:15:45 +08:00
|
|
|
{
|
|
|
|
|
id: 0,
|
2024-03-19 16:38:02 +08:00
|
|
|
name: '新建'
|
2024-03-12 16:15:45 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
2024-03-19 16:38:02 +08:00
|
|
|
name: '待审核'
|
2024-03-12 16:15:45 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
2024-03-19 16:38:02 +08:00
|
|
|
name: '未通过'
|
2024-03-12 16:15:45 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
2024-03-19 16:38:02 +08:00
|
|
|
name: '已发布'
|
2024-03-12 16:15:45 +08:00
|
|
|
}
|
|
|
|
|
]
|
2024-03-06 16:14:09 +08:00
|
|
|
|
2024-03-19 16:38:02 +08:00
|
|
|
const planAddRef = ref()
|
2024-03-12 16:15:45 +08:00
|
|
|
const TableHeaderRef = ref()
|
|
|
|
|
|
|
|
|
|
const ruleFormRef = ref()
|
|
|
|
|
const tableStore = new TableStore({
|
2024-03-19 16:38:02 +08:00
|
|
|
url: '/process-boot/rGeneralSurveyPlan/queryPlan',
|
2024-03-12 16:15:45 +08:00
|
|
|
publicHeight: 65,
|
|
|
|
|
method: 'POST',
|
|
|
|
|
column: [
|
|
|
|
|
{ width: '60', type: 'checkbox' },
|
|
|
|
|
{ field: 'orgName', title: '责任单位' },
|
|
|
|
|
{
|
|
|
|
|
field: 'planNo',
|
|
|
|
|
title: '普测计划编号'
|
|
|
|
|
},
|
|
|
|
|
{ field: 'planName', title: '普测计划名称' },
|
|
|
|
|
{ field: 'planStartTime', title: '开始时间' },
|
|
|
|
|
{ field: 'planEndTime', title: '结束时间' },
|
|
|
|
|
{ field: 'subCount', title: '普测变电站数量' },
|
2024-03-22 16:18:08 +08:00
|
|
|
{
|
|
|
|
|
field: 'status',
|
|
|
|
|
title: '计划状态',
|
|
|
|
|
render: 'tag',
|
|
|
|
|
custom: {
|
|
|
|
|
0: '',
|
|
|
|
|
1: '',
|
|
|
|
|
2: 'warning',
|
|
|
|
|
3: 'success'
|
|
|
|
|
},
|
|
|
|
|
replaceValue: {
|
|
|
|
|
0: '新建',
|
|
|
|
|
1: '待审核',
|
|
|
|
|
2: '未通过',
|
|
|
|
|
3: '已发布'
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-03-12 16:15:45 +08:00
|
|
|
|
|
|
|
|
{
|
2024-03-22 16:18:08 +08:00
|
|
|
title: '操作',
|
2024-03-12 16:15:45 +08:00
|
|
|
width: '180',
|
|
|
|
|
render: 'buttons',
|
|
|
|
|
buttons: [
|
|
|
|
|
{
|
|
|
|
|
name: 'edit',
|
|
|
|
|
title: '查看',
|
|
|
|
|
type: 'primary',
|
2024-03-06 16:14:09 +08:00
|
|
|
|
2024-03-12 16:15:45 +08:00
|
|
|
icon: 'el-icon-Plus',
|
|
|
|
|
render: 'basicButton',
|
2024-03-22 16:18:08 +08:00
|
|
|
click: row => {
|
|
|
|
|
planAddRef.value.open('查看计划', row)
|
|
|
|
|
}
|
2024-03-12 16:15:45 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'edit',
|
|
|
|
|
title: '编辑',
|
|
|
|
|
type: '',
|
|
|
|
|
disabled: row => {
|
|
|
|
|
return !(row.status == 0 || row.status == 2)
|
|
|
|
|
},
|
|
|
|
|
icon: 'el-icon-Plus',
|
|
|
|
|
render: 'basicButton',
|
2024-03-22 16:18:08 +08:00
|
|
|
click: async row => {
|
|
|
|
|
planAddRef.value.open('编辑计划', row)
|
|
|
|
|
}
|
2024-03-12 16:15:45 +08:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
2024-03-19 16:38:02 +08:00
|
|
|
beforeSearchFun: () => {
|
|
|
|
|
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
|
|
|
|
|
tableStore.table.params.currentPage = tableStore.table.params.pageNum
|
2024-03-22 16:18:08 +08:00
|
|
|
}
|
2024-03-12 16:15:45 +08:00
|
|
|
})
|
|
|
|
|
|
2024-03-19 16:38:02 +08:00
|
|
|
tableStore.table.params.status = ''
|
2024-03-12 16:15:45 +08:00
|
|
|
|
|
|
|
|
provide('tableStore', tableStore)
|
2024-03-13 20:33:01 +08:00
|
|
|
// 新增计划
|
|
|
|
|
const add = () => {
|
2024-03-19 16:38:02 +08:00
|
|
|
// title.value = '普测计划新增'
|
|
|
|
|
planAddRef.value.open('普测计划新增')
|
2024-03-13 20:33:01 +08:00
|
|
|
}
|
2024-03-22 16:18:08 +08:00
|
|
|
// 提交审核
|
|
|
|
|
const planReviewFn = () => {
|
|
|
|
|
let planNo: any = []
|
|
|
|
|
let flag = true
|
|
|
|
|
tableStore.table.selection.forEach(item => {
|
|
|
|
|
if (item.status == 0 || item.status == 2) {
|
|
|
|
|
planNo.push(item.planNo)
|
|
|
|
|
} else {
|
|
|
|
|
flag = false
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
if (flag) {
|
|
|
|
|
planStatus(planNo).then(res => {
|
|
|
|
|
ElMessage.success('提交成功!')
|
2024-03-19 16:38:02 +08:00
|
|
|
|
2024-03-22 16:18:08 +08:00
|
|
|
tableStore.index()
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
ElMessage.warning('请选择新建、未通过的计划进行审核!')
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-03-13 20:33:01 +08:00
|
|
|
// 取消
|
|
|
|
|
|
2024-03-12 16:15:45 +08:00
|
|
|
onMounted(() => {
|
|
|
|
|
tableStore.index()
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2024-03-13 20:33:01 +08:00
|
|
|
|
2024-03-22 16:18:08 +08:00
|
|
|
<style scoped lang="scss"></style>
|