2024-05-31 08:44:45 +08:00
|
|
|
<template>
|
2024-06-04 10:51:54 +08:00
|
|
|
<TableHeader area datePicker ref='TableHeaderRef'>
|
2024-06-05 14:34:23 +08:00
|
|
|
<template v-slot:select>
|
|
|
|
|
<el-form-item label="审核状态">
|
|
|
|
|
<el-select v-model="tableStore.table.params.status" clearable placeholder="请选择审核状态">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in statusSelect"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</template>
|
2024-05-31 08:44:45 +08:00
|
|
|
<template #operation>
|
|
|
|
|
<!-- <el-button icon="el-icon-Download" type="primary" @click="exportFn">导出</el-button> -->
|
|
|
|
|
</template>
|
2024-06-03 19:29:07 +08:00
|
|
|
</TableHeader>
|
2024-06-04 10:51:54 +08:00
|
|
|
<Table ref='tableRef' />
|
2024-05-31 08:44:45 +08:00
|
|
|
<!-- 新增 -->
|
2024-06-04 10:51:54 +08:00
|
|
|
<planTest ref='planTestRef' @onsubmit='tableStore.index()' />
|
2024-05-31 08:44:45 +08:00
|
|
|
</template>
|
2024-06-04 10:51:54 +08:00
|
|
|
<script setup lang='ts'>
|
2024-05-31 08:44:45 +08:00
|
|
|
import { ref, onMounted, provide, nextTick } from 'vue'
|
2024-06-04 15:53:28 +08:00
|
|
|
import { useAdminInfo } from '@/stores/adminInfo'
|
|
|
|
|
//获取登陆用户姓名和部门
|
|
|
|
|
const adminInfo = useAdminInfo()
|
2024-05-31 08:44:45 +08:00
|
|
|
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-06-04 15:53:28 +08:00
|
|
|
import { cancelTest } from '@/api/process-boot/generalTest'
|
2024-06-03 09:17:00 +08:00
|
|
|
import planTest from './planTest.vue'
|
2024-05-31 08:44:45 +08:00
|
|
|
import { useRouter } from 'vue-router'
|
|
|
|
|
|
2024-06-04 10:51:54 +08:00
|
|
|
import { queryPlan, removeSurvey } from '@/api/process-boot/generalTest'
|
2024-05-31 08:44:45 +08:00
|
|
|
import { getUserByRoleType } from '@/api/user-boot/user'
|
2024-06-04 10:51:54 +08:00
|
|
|
|
2024-05-31 08:44:45 +08:00
|
|
|
const { push } = useRouter()
|
|
|
|
|
const tableRef = ref()
|
|
|
|
|
|
2024-06-05 14:34:23 +08:00
|
|
|
import { useDictData } from '@/stores/dictData'
|
|
|
|
|
const dictData = useDictData()
|
|
|
|
|
const statusSelect = dictData.statusSelect()
|
2024-05-31 08:44:45 +08:00
|
|
|
|
2024-06-03 09:17:00 +08:00
|
|
|
const planTestRef = ref()
|
2024-05-31 08:44:45 +08:00
|
|
|
const TableHeaderRef = ref()
|
2024-06-04 10:51:54 +08:00
|
|
|
const auditList: any = ref([])
|
2024-05-31 08:44:45 +08:00
|
|
|
|
|
|
|
|
const tableStore = new TableStore({
|
2024-06-03 19:29:07 +08:00
|
|
|
url: '/supervision-boot/surveyTest/surveyTestPage',
|
2024-05-31 08:44:45 +08:00
|
|
|
publicHeight: 65,
|
|
|
|
|
method: 'POST',
|
|
|
|
|
column: [
|
|
|
|
|
{
|
2024-06-04 10:51:54 +08:00
|
|
|
title: '序号',
|
|
|
|
|
width: 60,
|
|
|
|
|
formatter: (row: any) => {
|
|
|
|
|
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
|
|
|
|
|
}
|
2024-05-31 08:44:45 +08:00
|
|
|
},
|
2024-06-04 10:51:54 +08:00
|
|
|
{ field: 'planName', title: '普测计划', minWidth: 140 },
|
|
|
|
|
{ field: 'substationName', title: '变电站', minWidth: 140 },
|
|
|
|
|
{ field: 'planStartTime', title: '计划开始时间', minWidth: 140 },
|
|
|
|
|
{ field: 'planEndTime', title: '计划结束时间', minWidth: 140 },
|
|
|
|
|
{ field: 'problemFlag', title: '是否存在问题', minWidth: 120,
|
|
|
|
|
render: 'tag',
|
|
|
|
|
custom: {
|
|
|
|
|
0: 'success',
|
|
|
|
|
1: 'danger',
|
|
|
|
|
null:'primary'
|
|
|
|
|
},
|
|
|
|
|
replaceValue: {
|
|
|
|
|
0: '合格',
|
|
|
|
|
1: '存在问题',
|
|
|
|
|
null:'待测试'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{ field: 'deptName', title: '负责单位', minWidth: 140 },
|
|
|
|
|
{ field: 'completeBy', title: '计划负责人', minWidth: 130 },
|
|
|
|
|
{ field: 'completeTime', title: '实际完成时间', minWidth: 140 },
|
2024-05-31 08:44:45 +08:00
|
|
|
{
|
|
|
|
|
field: 'status',
|
|
|
|
|
title: '计划状态',
|
|
|
|
|
render: 'tag',
|
2024-06-04 10:51:54 +08:00
|
|
|
minWidth: 140,
|
2024-05-31 08:44:45 +08:00
|
|
|
custom: {
|
2024-06-04 10:51:54 +08:00
|
|
|
6: 'primary',
|
2024-05-31 08:44:45 +08:00
|
|
|
1: 'primary',
|
|
|
|
|
2: 'success',
|
|
|
|
|
3: 'danger',
|
|
|
|
|
4: 'warning'
|
|
|
|
|
},
|
|
|
|
|
replaceValue: {
|
2024-06-04 10:51:54 +08:00
|
|
|
6: '待测试',
|
2024-05-31 08:44:45 +08:00
|
|
|
1: '审批中',
|
|
|
|
|
2: '审批通过',
|
|
|
|
|
3: '审批不通过',
|
|
|
|
|
4: '已取消'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '操作',
|
2024-06-04 10:51:54 +08:00
|
|
|
minWidth: 180,
|
2024-05-31 08:44:45 +08:00
|
|
|
render: 'buttons',
|
2024-06-04 10:51:54 +08:00
|
|
|
fixed: 'right',
|
2024-05-31 08:44:45 +08:00
|
|
|
buttons: [
|
2024-06-04 10:51:54 +08:00
|
|
|
{
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
title: '测试填报',
|
|
|
|
|
type: 'primary',
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
disabled: row => {
|
|
|
|
|
return row.status != 6
|
|
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
add(row.id)
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-05-31 08:44:45 +08:00
|
|
|
{
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
title: '流程详情',
|
|
|
|
|
type: 'primary',
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
render: 'basicButton',
|
2024-06-04 10:51:54 +08:00
|
|
|
disabled: row => {
|
|
|
|
|
return row.status == 6 || row.status == 4
|
|
|
|
|
},
|
2024-05-31 08:44:45 +08:00
|
|
|
click: row => {
|
2024-06-03 09:17:00 +08:00
|
|
|
// planTestRef.value.open('查看计划', row)
|
2024-06-05 13:28:21 +08:00
|
|
|
handleAudit(row.processInstanceId,row.historyInstanceId)
|
2024-05-31 08:44:45 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'edit',
|
|
|
|
|
title: '重新发起',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
disabled: row => {
|
2024-06-04 15:53:28 +08:00
|
|
|
return row.createBy != adminInfo.$state.id || row.status == 6 || row.status == 1 || row.status == 2
|
2024-05-31 08:44:45 +08:00
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
// deviceQuitPopup.value.open('重新发起退运', row)
|
2024-06-04 15:53:28 +08:00
|
|
|
planTestRef.value.open('重新发起计划', row.id)
|
2024-05-31 08:44:45 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'cancel',
|
|
|
|
|
title: '取消',
|
|
|
|
|
type: 'danger',
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
disabled: row => {
|
2024-06-04 15:53:28 +08:00
|
|
|
return row.createBy != adminInfo.$state.id || row.status == 6 || row.status == 2 || row.status == 3 || row.status == 4
|
2024-05-31 08:44:45 +08:00
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
cancelLeave(row)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
beforeSearchFun: () => {
|
|
|
|
|
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
|
|
|
|
|
tableStore.table.params.currentPage = tableStore.table.params.pageNum
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
tableStore.table.params.status = ''
|
|
|
|
|
|
|
|
|
|
provide('tableStore', tableStore)
|
|
|
|
|
// 新增计划
|
2024-06-04 10:51:54 +08:00
|
|
|
const add = (id: string) => {
|
|
|
|
|
planTestRef.value.open('普测计划测试填报',id,true)
|
2024-05-31 08:44:45 +08:00
|
|
|
}
|
|
|
|
|
|
2024-06-04 10:51:54 +08:00
|
|
|
|
2024-05-31 08:44:45 +08:00
|
|
|
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, // 数据源 // 过滤那个字段导出
|
2024-06-04 10:51:54 +08:00
|
|
|
columnFilterMethod: function(column: any) {
|
2024-05-31 08:44:45 +08:00
|
|
|
return !(column.$columnIndex === 0)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**取消流程操作*/
|
|
|
|
|
const cancelLeave = async (row: any) => {
|
|
|
|
|
// 二次确认
|
|
|
|
|
const { value } = await ElMessageBox.prompt('请输入取消原因', '取消流程', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
|
|
|
|
|
inputErrorMessage: '取消原因不能为空'
|
|
|
|
|
})
|
|
|
|
|
// 发起取消
|
|
|
|
|
let data = {
|
2024-06-04 15:53:28 +08:00
|
|
|
id: row.id,
|
2024-05-31 08:44:45 +08:00
|
|
|
processInstanceId: row.processInstanceId,
|
|
|
|
|
reason: value
|
|
|
|
|
}
|
2024-06-04 15:53:28 +08:00
|
|
|
await cancelTest(data)
|
2024-05-31 08:44:45 +08:00
|
|
|
ElMessage.success('取消成功')
|
|
|
|
|
// 加载数据
|
|
|
|
|
tableStore.index()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 处理审批按钮 */
|
2024-06-05 13:28:21 +08:00
|
|
|
const handleAudit = (instanceId: any,historyInstanceId:any) => {
|
2024-05-31 08:44:45 +08:00
|
|
|
push({
|
|
|
|
|
name: 'BpmProcessInstanceDetail',
|
2024-06-05 13:28:21 +08:00
|
|
|
state: {
|
|
|
|
|
id: instanceId,
|
|
|
|
|
historyInstanceId
|
2024-05-31 08:44:45 +08:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// 取消
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
tableStore.index()
|
|
|
|
|
getUserByRoleType(3).then(res => {
|
|
|
|
|
auditList.value = res.data
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-06-04 10:51:54 +08:00
|
|
|
<style scoped lang='scss'></style>
|