2024-05-16 15:00:58 +08:00
|
|
|
<template>
|
2024-06-14 16:59:21 +08:00
|
|
|
<TableHeader area datePicker nextFlag ref="TableHeaderRef">
|
2024-06-05 14:34:23 +08:00
|
|
|
<template #select>
|
2024-06-14 16:59:21 +08:00
|
|
|
<el-form-item label="搜索">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="tableStore.table.params.searchValue"
|
2024-06-19 10:19:38 +08:00
|
|
|
placeholder="输入变电站、终端、监测点名称"
|
2024-06-14 16:59:21 +08:00
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
2024-06-13 13:32:50 +08:00
|
|
|
<el-form-item label="流程状态">
|
|
|
|
|
<el-select v-model="tableStore.table.params.status" clearable placeholder="请选择流程状态">
|
2024-06-05 14:34:23 +08:00
|
|
|
<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-16 15:00:58 +08:00
|
|
|
<template #operation>
|
|
|
|
|
<el-button icon="el-icon-Plus" type="primary" @click="addFormModel">新增</el-button>
|
|
|
|
|
<!-- <el-button icon="el-icon-Download" @click="exportEvent" type="primary">导出</el-button> -->
|
|
|
|
|
</template>
|
|
|
|
|
</TableHeader>
|
|
|
|
|
<Table ref="tableRef" />
|
|
|
|
|
|
|
|
|
|
<!-- 新增弹框 -->
|
|
|
|
|
<addForm ref="addForms" @onSubmit="tableStore.index()"></addForm>
|
|
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
2024-06-04 18:06:17 +08:00
|
|
|
import { ref, onMounted, provide, watch } from 'vue'
|
2024-05-16 15:00:58 +08:00
|
|
|
import TableStore from '@/utils/tableStore'
|
|
|
|
|
import Table from '@/components/table/index.vue'
|
|
|
|
|
import TableHeader from '@/components/table/header/index.vue'
|
|
|
|
|
import { useRouter } from 'vue-router'
|
|
|
|
|
import { useDictData } from '@/stores/dictData'
|
|
|
|
|
import { getLoadTypeUserList } from '@/api/process-boot/interference'
|
2024-06-04 16:54:33 +08:00
|
|
|
import { ElMessage } from 'element-plus'
|
|
|
|
|
import { ElMessageBox } from 'element-plus/es'
|
|
|
|
|
import { cancelTerminalFormData } from '@/api/supervision-boot/terminal/index'
|
2024-05-16 15:00:58 +08:00
|
|
|
import addForm from './addForm.vue'
|
2024-06-04 16:54:33 +08:00
|
|
|
import { useAdminInfo } from '@/stores/adminInfo'
|
|
|
|
|
//获取登陆用户姓名和部门
|
|
|
|
|
const adminInfo = useAdminInfo()
|
2024-05-16 15:00:58 +08:00
|
|
|
const dictData = useDictData()
|
2024-06-04 18:06:17 +08:00
|
|
|
const { push, options, currentRoute } = useRouter()
|
2024-05-16 15:00:58 +08:00
|
|
|
const TableHeaderRef = ref()
|
|
|
|
|
const tableRef = ref()
|
|
|
|
|
const areaOptionList = dictData.getBasicData('jibei_area')
|
2024-06-05 14:34:23 +08:00
|
|
|
const statusSelect = dictData.statusSelect()
|
2024-05-16 15:00:58 +08:00
|
|
|
const ruleFormRef = ref()
|
|
|
|
|
const show: any = ref(false)
|
|
|
|
|
const fileList = ref([])
|
2024-06-04 18:06:17 +08:00
|
|
|
const flag = ref(false)
|
2024-05-16 15:00:58 +08:00
|
|
|
const tableStore = new TableStore({
|
|
|
|
|
url: '/supervision-boot/deVReport/list',
|
|
|
|
|
publicHeight: 65,
|
|
|
|
|
method: 'POST',
|
|
|
|
|
column: [
|
|
|
|
|
{ title: '序号', type: 'seq', width: 80 },
|
2024-06-03 18:00:32 +08:00
|
|
|
{
|
|
|
|
|
field: 'orgName',
|
|
|
|
|
title: '填报部门名称',
|
|
|
|
|
minWidth: 170,
|
|
|
|
|
formatter: (row: any) => {
|
|
|
|
|
row.cellValue = row.cellValue ? row.cellValue : ''
|
|
|
|
|
return row.cellValue
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'substationName',
|
|
|
|
|
title: '所属变电站',
|
|
|
|
|
minWidth: 170,
|
|
|
|
|
formatter: (row: any) => {
|
|
|
|
|
row.cellValue = row.cellValue ? row.cellValue : '/'
|
|
|
|
|
return row.cellValue
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-06-13 13:32:50 +08:00
|
|
|
{ field: 'monitoringTerminalName', title: '终端名称', minWidth: 170 },
|
|
|
|
|
{ field: 'monitoringTerminalCode', title: '终端编号', minWidth: 170 },
|
2024-06-02 17:55:37 +08:00
|
|
|
{ field: 'reportDate', title: '填报日期', minWidth: 170 },
|
2024-06-05 15:08:24 +08:00
|
|
|
{
|
|
|
|
|
field: 'createBy',
|
|
|
|
|
title: '填报人',
|
|
|
|
|
minWidth: 80,
|
|
|
|
|
formatter: (row: any) => {
|
|
|
|
|
return dictData.state.userList.filter(item => item.id == row.cellValue)[0]?.name
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-05-16 15:00:58 +08:00
|
|
|
{
|
|
|
|
|
field: 'status',
|
2024-06-13 13:32:50 +08:00
|
|
|
title: '流程状态',
|
2024-05-16 15:00:58 +08:00
|
|
|
minWidth: 100,
|
|
|
|
|
render: 'tag',
|
|
|
|
|
custom: {
|
2024-06-19 19:37:39 +08:00
|
|
|
0: 'warning',
|
2024-05-16 15:00:58 +08:00
|
|
|
1: 'primary',
|
|
|
|
|
2: 'success',
|
|
|
|
|
3: 'danger',
|
|
|
|
|
4: 'warning'
|
|
|
|
|
},
|
|
|
|
|
replaceValue: {
|
2024-06-19 19:37:39 +08:00
|
|
|
0: '待提交审批',
|
2024-05-16 15:00:58 +08:00
|
|
|
1: '审批中',
|
|
|
|
|
2: '审批通过',
|
|
|
|
|
3: '审批不通过',
|
|
|
|
|
4: '已取消'
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-05-22 19:53:25 +08:00
|
|
|
|
2024-05-20 16:05:23 +08:00
|
|
|
// { field: 'substation', title: '所属变电站', minWidth: 170 },
|
2024-05-16 15:00:58 +08:00
|
|
|
// {
|
|
|
|
|
// field: 'userType',
|
|
|
|
|
// title: '用户性质',
|
|
|
|
|
// minWidth: 150,
|
|
|
|
|
// formatter: (obj: any) => {
|
|
|
|
|
// const userType = obj.row.userType
|
|
|
|
|
// return getUserTypeName(userType)
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
// { field: 'informationSecurityTestReport', title: '信息安全检测报告', minWidth: 170 },
|
|
|
|
|
// { field: 'otherAttachments', title: '其他附件', minWidth: 170 },
|
|
|
|
|
// { field: 'orgName', title: '填报部门名称'},
|
|
|
|
|
// { field: 'performanceTestReport', title: '性能检测报告', minWidth: 170 },
|
2024-06-02 17:55:37 +08:00
|
|
|
|
2024-05-16 15:00:58 +08:00
|
|
|
// {
|
|
|
|
|
// field: 'userStatus',
|
|
|
|
|
// title: '用户状态',
|
|
|
|
|
// minWidth: 100,
|
|
|
|
|
// render: 'tag',
|
|
|
|
|
// custom: {
|
|
|
|
|
// 0: 'primary',
|
|
|
|
|
// 1: 'primary',
|
|
|
|
|
// 2: 'success',
|
|
|
|
|
// 3: 'warning'
|
|
|
|
|
// },
|
|
|
|
|
// replaceValue: {
|
|
|
|
|
// 0: '可研',
|
|
|
|
|
// 1: '建设',
|
|
|
|
|
// 2: '运行',
|
|
|
|
|
// 3: '退运'
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// { field: 'substation', title: '变电站', minWidth: 100 },
|
|
|
|
|
// { field: 'createTime', title: '开始时间', minWidth: 170 },
|
|
|
|
|
{
|
|
|
|
|
title: '操作',
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
fixed: 'right',
|
|
|
|
|
render: 'buttons',
|
|
|
|
|
buttons: [
|
|
|
|
|
{
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
title: '流程详情',
|
|
|
|
|
type: 'primary',
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
render: 'basicButton',
|
2024-06-19 19:37:39 +08:00
|
|
|
disabled: row => {
|
|
|
|
|
return !row.processInstanceId
|
|
|
|
|
},
|
2024-05-16 15:00:58 +08:00
|
|
|
click: row => {
|
2024-06-04 18:06:17 +08:00
|
|
|
flag.value = true
|
2024-06-03 18:00:32 +08:00
|
|
|
handleAudit(row.processInstanceId, row.historyInstanceId)
|
2024-05-16 15:00:58 +08:00
|
|
|
}
|
2024-06-02 17:55:37 +08:00
|
|
|
},
|
2024-06-19 19:37:39 +08:00
|
|
|
{
|
|
|
|
|
name: 'edit',
|
|
|
|
|
title: '编辑',
|
|
|
|
|
type: 'primary',
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
render: 'basicButton',
|
2024-06-24 17:41:54 +08:00
|
|
|
showDisabled: row => {
|
2024-06-19 19:37:39 +08:00
|
|
|
return row.createBy != adminInfo.$state.id || !(row.status == 0)
|
|
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
addForms.value.open({
|
|
|
|
|
title: '编辑',
|
|
|
|
|
row: row
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-06-03 15:49:04 +08:00
|
|
|
{
|
|
|
|
|
name: 'edit',
|
|
|
|
|
title: '重新发起',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
disabled: row => {
|
2024-06-18 16:38:33 +08:00
|
|
|
return row.createBy != adminInfo.$state.id || !(row.status == 3 || row.status == 4)
|
2024-06-03 15:49:04 +08:00
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
addForms.value.open({
|
|
|
|
|
title: '重新发起',
|
|
|
|
|
row: row
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'cancel',
|
|
|
|
|
title: '取消',
|
|
|
|
|
type: 'danger',
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
disabled: row => {
|
2024-06-04 16:54:33 +08:00
|
|
|
return row.createBy != adminInfo.$state.id || row.status != 1
|
2024-06-03 15:49:04 +08:00
|
|
|
},
|
|
|
|
|
click: row => {
|
2024-06-04 16:54:33 +08:00
|
|
|
cancelLeave(row)
|
2024-06-03 15:49:04 +08:00
|
|
|
}
|
|
|
|
|
}
|
2024-05-16 15:00:58 +08:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
beforeSearchFun: () => {
|
2024-06-02 17:55:37 +08:00
|
|
|
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
|
2024-05-16 15:00:58 +08:00
|
|
|
// tableStore.table.params.relationUserName = tableStore.table.params.userName
|
|
|
|
|
}
|
|
|
|
|
})
|
2024-06-14 16:59:21 +08:00
|
|
|
tableStore.table.params.status = ''
|
|
|
|
|
tableStore.table.params.searchValue = ''
|
2024-05-16 15:00:58 +08:00
|
|
|
// tableStore.table.params.loadType = ''
|
|
|
|
|
// tableStore.table.params.userName = ''
|
|
|
|
|
// tableStore.table.params.fileUploadflag = ''
|
|
|
|
|
|
|
|
|
|
provide('tableStore', tableStore)
|
|
|
|
|
|
|
|
|
|
const addForms = ref()
|
|
|
|
|
const addFormModel = () => {
|
|
|
|
|
setTimeout(() => {
|
2024-06-02 17:55:37 +08:00
|
|
|
addForms.value.open({
|
|
|
|
|
title: '终端信息'
|
|
|
|
|
})
|
|
|
|
|
}, 0)
|
2024-05-16 15:00:58 +08:00
|
|
|
}
|
2024-06-04 16:54:33 +08:00
|
|
|
/**取消流程操作*/
|
|
|
|
|
const cancelLeave = async (row: any) => {
|
|
|
|
|
// 二次确认
|
|
|
|
|
const { value } = await ElMessageBox.prompt('请输入取消原因', '取消流程', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
2024-06-19 11:28:18 +08:00
|
|
|
inputType: 'textarea',
|
2024-06-04 16:54:33 +08:00
|
|
|
inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
|
|
|
|
|
inputErrorMessage: '取消原因不能为空'
|
|
|
|
|
})
|
|
|
|
|
// 发起取消
|
|
|
|
|
let data = {
|
|
|
|
|
id: row.id,
|
|
|
|
|
processInstanceId: row.processInstanceId,
|
|
|
|
|
reason: value
|
|
|
|
|
}
|
|
|
|
|
await cancelTerminalFormData(data)
|
|
|
|
|
ElMessage.success('取消成功')
|
|
|
|
|
// 加载数据
|
|
|
|
|
tableStore.index()
|
|
|
|
|
}
|
2024-05-16 15:00:58 +08:00
|
|
|
const exportEvent = () => {
|
|
|
|
|
let form = JSON.parse(JSON.stringify(tableStore.table.params))
|
|
|
|
|
form.pageNum = 1
|
|
|
|
|
form.pageSize = tableStore.table.total
|
|
|
|
|
getLoadTypeUserList(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)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
tableStore.index()
|
|
|
|
|
})
|
|
|
|
|
|
2024-06-04 18:06:17 +08:00
|
|
|
watch(
|
|
|
|
|
() => currentRoute.value.path,
|
|
|
|
|
() => {
|
|
|
|
|
if (flag.value && options.history.state.forward?.split('/')[1] == 'bpm') {
|
|
|
|
|
tableStore.index()
|
|
|
|
|
flag.value = false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
deep: true
|
|
|
|
|
}
|
|
|
|
|
)
|
2024-05-16 15:00:58 +08:00
|
|
|
/** 处理审批按钮 */
|
2024-06-03 18:00:32 +08:00
|
|
|
const handleAudit = (instanceId: any, historyInstanceId: any) => {
|
2024-05-16 15:00:58 +08:00
|
|
|
push({
|
|
|
|
|
name: 'BpmProcessInstanceDetail',
|
2024-06-03 18:00:32 +08:00
|
|
|
state: {
|
2024-06-03 15:49:04 +08:00
|
|
|
id: instanceId,
|
|
|
|
|
historyInstanceId
|
2024-05-16 15:00:58 +08:00
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
:deep(.el-upload-list__item) {
|
|
|
|
|
width: 400px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::v-deep .el-input__wrapper {
|
|
|
|
|
// width: 200px !important;
|
|
|
|
|
}
|
|
|
|
|
</style>
|