Files
admin-sjzx/src/views/pqs/supervise/harmonicSurvey/components/planManage.vue

237 lines
7.4 KiB
Vue

<template>
<TableHeader area datePicker ref="TableHeaderRef">
<template #select>
<el-form-item label="计划状态">
<el-select v-model="tableStore.table.params.status" clearable placeholder="请选择计划状态">
<el-option v-for="item in list" :key="item.id" :label="item.name" :value="item.id"></el-option>
</el-select>
</el-form-item>
</template>
<template #operation>
<el-button icon="el-icon-Plus" type="primary" @click="add">新增计划</el-button>
<el-button icon="el-icon-Stamp" type="primary" @click="submit">提交审核</el-button>
<el-button icon="el-icon-Download" type="primary" @click="exportFn">导出</el-button>
</template>
</TableHeader ref="tableRef">
<Table ref="tableRef" />
<!-- 新增 -->
<planAdd ref="planAddRef" @onsubmit="tableStore.index()" />
<!-- 选择审核人 -->
<el-dialog v-model="dialogVisible" title="审核" width="300" :before-close="handleClose">
选择审核人: <el-select v-model="auditUser" clearable placeholder="请选择计划状态">
<el-option v-for="item in auditList" :key="item.id" :label="item.name" :value="item.id"></el-option>
</el-select>
<template #footer>
<span class="dialog-footer">
<el-button type="primary" @click="planReviewFn">确定</el-button>
<el-button @click="handleClose">取消</el-button>
</span>
</template>
</el-dialog>
</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'
import { planStatus } from '@/api/process-boot/generalTest'
import planAdd from './planAdd.vue'
import { useDictData } from '@/stores/dictData'
import { queryPlan,deletePlan } from '@/api/process-boot/generalTest'
import { getUserByRoleType } from '@/api/user-boot/user'
const dictData = useDictData()
const dialogVisible=ref(false)
const tableRef = ref()
const list = [
{
id: 0,
name: '新建'
},
{
id: 1,
name: '待审核'
},
{
id: 2,
name: '未通过'
},
{
id: 3,
name: '已发布'
}
]
const planAddRef = ref()
const TableHeaderRef = ref()
const auditList:any = ref([])
const auditUser = ref('')
const ruleFormRef = ref()
const tableStore = new TableStore({
url: '/process-boot/rGeneralSurveyPlan/queryPlan',
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: '普测变电站数量' },
{
field: 'status',
title: '计划状态',
render: 'tag',
custom: {
0: '',
1: '',
2: 'warning',
3: 'success'
},
replaceValue: {
0: '新建',
1: '待审核',
2: '未通过',
3: '已发布'
}
},
{
title: '操作',
width: '180',
render: 'buttons',
buttons: [
{
name: 'edit',
title: '查看',
type: 'primary',
icon: 'el-icon-Plus',
render: 'basicButton',
click: row => {
planAddRef.value.open('查看计划', row)
}
},
{
name: 'edit',
title: '编辑',
type: '',
disabled: row => {
return !(row.status == 0 || row.status == 2)
},
icon: 'el-icon-Plus',
render: 'basicButton',
click: async row => {
planAddRef.value.open('编辑计划', row)
}
},
{
name: 'del',
title: '删除',
type: 'danger',
icon: 'el-icon-Delete',
render: 'confirmButton',
disabled: row => {
return !(row.status == 0 || row.status == 2)
},
popconfirm: {
confirmButtonText: '确认',
cancelButtonText: '取消',
confirmButtonType: 'danger',
title: '确定删除吗?'
},
click: row => {
deletePlan([row.planNo]).then(res => {
ElMessage.success('删除成功')
tableStore.index()
})
}
}
]
}
],
beforeSearchFun: () => {
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
tableStore.table.params.currentPage = tableStore.table.params.pageNum
}
})
tableStore.table.params.status = ''
provide('tableStore', tableStore)
// 新增计划
const add = () => {
// title.value = '普测计划新增'
planAddRef.value.open('普测计划新增')
}
const submit = () => {
if(tableStore.table.selection.length == 0){
return ElMessage.warning('请选择计划进行审核')
}
const flag = !tableStore.table.selection.some(item => item.status !== 0 && item.status !== 2);
if (flag) {
dialogVisible.value = true
} else {
ElMessage.warning('请选择新建、未通过的计划进行审核!')
}
}
// 提交审核
const planReviewFn = () => {
let planNo: any = []
tableStore.table.selection.forEach(item => {
if (item.status == 0 || item.status == 2) {
planNo.push(item.planNo)
}
})
planStatus(planNo).then(res => {
ElMessage.success('提交成功!')
tableStore.index()
})
}
const exportFn = () => {
let form = JSON.parse(JSON.stringify(tableStore.table.params))
form.pageNum = 1
form.pageSize = tableStore.table.total
queryPlan(form).then(res => {
tableRef.value.getRef().exportData({
filename: '普测计划', // 文件名字
sheetName: 'Sheet1',
type: 'xlsx', //导出文件类型 xlsx 和 csv
useStyle: true,
data: res.data.records, // 数据源 // 过滤那个字段导出
columnFilterMethod: function (column: any) {
return !(column.$columnIndex === 0)
}
})
})
}
const handleClose = () => {
dialogVisible.value = false
auditUser.value = ''
}
// 取消
onMounted(() => {
tableStore.index()
getUserByRoleType(3).then(res => {
auditList.value = res.data
})
})
</script>
<style scoped lang="scss"></style>