201 lines
6.2 KiB
Vue
201 lines
6.2 KiB
Vue
<template>
|
|
<TableHeader area datePicker ref="TableHeaderRef">
|
|
<template #operation>
|
|
<el-button icon="el-icon-Plus" type="primary" @click="add">新增计划</el-button>
|
|
<!-- <el-button icon="el-icon-Download" type="primary" @click="exportFn">导出</el-button> -->
|
|
</template>
|
|
</TableHeader>
|
|
<Table ref="tableRef" />
|
|
<!-- 新增 -->
|
|
<planAdd ref="planAddRef" @onsubmit="tableStore.index()" />
|
|
</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 { cancel } from '@/api/process-boot/generalTest'
|
|
import planAdd from './planAdd.vue'
|
|
import { useRouter } from 'vue-router'
|
|
import { queryPlan, removeSurvey } from '@/api/process-boot/generalTest'
|
|
import { getUserByRoleType } from '@/api/user-boot/user'
|
|
const { push } = useRouter()
|
|
const dialogVisible = ref(false)
|
|
const tableRef = ref()
|
|
const planAddRef = ref()
|
|
const TableHeaderRef = ref()
|
|
const auditList: any = ref([])
|
|
const auditUser = ref('')
|
|
const tableStore = new TableStore({
|
|
url: '/supervision-boot/surveyPlan/surveyPlanPage',
|
|
publicHeight: 65,
|
|
method: 'POST',
|
|
column: [
|
|
{
|
|
title: '序号',
|
|
width: 60,
|
|
formatter: (row: any) => {
|
|
return (tableStore.table.params.pageNum - 1) * tableStore.table.params.pageSize + row.rowIndex + 1
|
|
}
|
|
},
|
|
{
|
|
field: 'deptName',
|
|
title: '普测负责单位'
|
|
},
|
|
{
|
|
field: 'substation',
|
|
title: '变电站',
|
|
formatter: (row: any) => {
|
|
return row.cellValue
|
|
}
|
|
},
|
|
{
|
|
field: 'planName',
|
|
title: '普测计划名称'
|
|
},
|
|
{ field: 'planStartTime', title: '计划开始时间' },
|
|
{ field: 'planEndTime', title: '计划结束时间' },
|
|
{
|
|
field: 'status',
|
|
title: '计划状态',
|
|
render: 'tag',
|
|
custom: {
|
|
1: 'primary',
|
|
2: 'success',
|
|
3: 'danger',
|
|
4: 'warning'
|
|
},
|
|
replaceValue: {
|
|
1: '审批中',
|
|
2: '审批通过',
|
|
3: '审批不通过',
|
|
4: '已取消'
|
|
}
|
|
},
|
|
{
|
|
title: '操作',
|
|
width: '180',
|
|
render: 'buttons',
|
|
buttons: [
|
|
{
|
|
name: 'productSetting',
|
|
title: '流程详情',
|
|
type: 'primary',
|
|
icon: 'el-icon-EditPen',
|
|
render: 'basicButton',
|
|
click: row => {
|
|
handleAudit(row.processInstanceId,row.historyInstanceId)
|
|
}
|
|
},
|
|
{
|
|
name: 'edit',
|
|
title: '重新发起',
|
|
type: 'warning',
|
|
icon: 'el-icon-Open',
|
|
render: 'basicButton',
|
|
disabled: row => {
|
|
return row.status == 1 || row.status == 2
|
|
},
|
|
click: row => {
|
|
// deviceQuitPopup.value.open('重新发起退运', row)
|
|
planAddRef.value.open('重新发起计划', row)
|
|
}
|
|
},
|
|
{
|
|
name: 'cancel',
|
|
title: '取消',
|
|
type: 'danger',
|
|
icon: 'el-icon-Open',
|
|
render: 'basicButton',
|
|
disabled: row => {
|
|
return row.status == 3 || row.status == 2 || row.status == 4
|
|
},
|
|
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)
|
|
// 新增计划
|
|
const add = () => {
|
|
// title.value = '普测计划新增'
|
|
planAddRef.value.open('普测计划新增')
|
|
}
|
|
|
|
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 cancelLeave = async (row: any) => {
|
|
// 二次确认
|
|
const { value } = await ElMessageBox.prompt('请输入取消原因', '取消流程', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
|
|
inputErrorMessage: '取消原因不能为空'
|
|
})
|
|
// 发起取消
|
|
let data = {
|
|
id: row.id,
|
|
processInstanceId: row.processInstanceId,
|
|
reason: value
|
|
}
|
|
await cancel(data)
|
|
ElMessage.success('取消成功')
|
|
// 加载数据
|
|
tableStore.index()
|
|
}
|
|
|
|
const handleClose = () => {
|
|
dialogVisible.value = false
|
|
auditUser.value = ''
|
|
}
|
|
|
|
/** 处理审批按钮 */
|
|
const handleAudit = (instanceId: string,historyInstanceId:string) => {
|
|
push({
|
|
name: 'BpmProcessInstanceDetail',
|
|
state: {
|
|
id: instanceId,
|
|
historyInstanceId
|
|
}
|
|
})
|
|
}
|
|
// 取消
|
|
|
|
onMounted(() => {
|
|
TableHeaderRef.value.setInterval(1)
|
|
tableStore.index()
|
|
getUserByRoleType(3).then(res => {
|
|
auditList.value = res.data
|
|
})
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|