2024-05-16 16:22:18 +08:00
|
|
|
<template>
|
2024-09-13 20:04:19 +08:00
|
|
|
<div class="default-main">
|
|
|
|
|
<!-- <TableHeader ref='TableHeaderRef'>
|
|
|
|
|
<template #select>
|
|
|
|
|
<el-form-item label='用户名称'>
|
|
|
|
|
<el-input v-model='tableStore.table.params.projectName' clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label='所在地市'>
|
|
|
|
|
<el-select v-model='tableStore.table.params.city' clearable placeholder='请选择所在地市'>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for='item in areaOptionList'
|
|
|
|
|
:key='item.id'
|
|
|
|
|
:label='item.name'
|
|
|
|
|
:value='item.name'
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</template>
|
|
|
|
|
<template #operation>
|
|
|
|
|
<el-button icon='' type='primary' @click='toGoNet()'>{{ titleButton }}</el-button>
|
2024-05-16 18:56:13 +08:00
|
|
|
|
2024-09-13 20:04:19 +08:00
|
|
|
<el-button style='margin-left: 50px' :icon='Back' @click='go(-1)'>返回</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</TableHeader> -->
|
|
|
|
|
<div class="header_btn">
|
|
|
|
|
<el-button v-if="bussType == 0 && !(jb_pl || jb_dky)" icon="" type="primary" @click="toGoNet()">
|
|
|
|
|
{{ titleButton }}
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
v-if="bussType == 1 && needGovernance != '0' && !(jb_pl || jb_dky)"
|
|
|
|
|
icon=""
|
|
|
|
|
type="primary"
|
|
|
|
|
@click="toGoNet()"
|
|
|
|
|
>
|
|
|
|
|
{{ titleButton }}
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button style="margin-left: 50px" :icon="Back" @click="go(-1)">返回</el-button>
|
2024-05-21 08:48:39 +08:00
|
|
|
</div>
|
2024-09-13 20:04:19 +08:00
|
|
|
<Table ref="tableRef"/>
|
|
|
|
|
|
|
|
|
|
<addForm
|
|
|
|
|
v-if="dialogVisible"
|
|
|
|
|
ref="addForms"
|
|
|
|
|
:id="bussId"
|
|
|
|
|
:bussType="bussType"
|
|
|
|
|
:title="titleButton1"
|
|
|
|
|
openType="detail"
|
|
|
|
|
@onSubmit="tableStore.index()"
|
|
|
|
|
></addForm>
|
|
|
|
|
</div>
|
2024-05-21 08:48:39 +08:00
|
|
|
</template>
|
|
|
|
|
|
2024-05-28 11:01:50 +08:00
|
|
|
<script setup lang="ts">
|
2024-05-16 18:56:13 +08:00
|
|
|
defineOptions({
|
2024-09-13 20:04:19 +08:00
|
|
|
name: 'ProgramReview'
|
2024-05-16 18:56:13 +08:00
|
|
|
})
|
2024-05-17 13:39:55 +08:00
|
|
|
|
2024-09-13 20:04:19 +08:00
|
|
|
import {ref, onMounted, provide, nextTick, onUnmounted} from 'vue'
|
2024-05-16 18:56:13 +08:00
|
|
|
import TableStore from '@/utils/tableStore'
|
|
|
|
|
import Table from '@/components/table/index.vue'
|
2024-09-13 20:04:19 +08:00
|
|
|
import {cancel, userReportGoNetById} from '@/api/supervision-boot/interfere/index'
|
|
|
|
|
import {useDictData} from '@/stores/dictData'
|
2024-05-28 11:01:50 +08:00
|
|
|
import addForm from './addForm.vue'
|
2024-09-13 20:04:19 +08:00
|
|
|
import {useRouter, useRoute} from 'vue-router'
|
|
|
|
|
import {Back} from '@element-plus/icons-vue'
|
|
|
|
|
import {useAdminInfo} from '@/stores/adminInfo'
|
|
|
|
|
|
|
|
|
|
const {go, currentRoute, push} = useRouter()
|
|
|
|
|
const {query} = useRoute() // 查询参数
|
|
|
|
|
import {ElMessage} from 'element-plus'
|
|
|
|
|
import {ElMessageBox} from 'element-plus/es'
|
|
|
|
|
|
2024-05-29 15:06:53 +08:00
|
|
|
const needGovernance = query.needGovernance as unknown as string // 从 URL 传递过来的 是否需要治理
|
2024-05-16 18:56:13 +08:00
|
|
|
const dictData = useDictData()
|
|
|
|
|
const areaOptionList = dictData.getBasicData('jibei_area')
|
2024-06-20 18:16:32 +08:00
|
|
|
const adminInfo = useAdminInfo()
|
2024-06-24 16:38:59 +08:00
|
|
|
const jb_pl = ref(false)
|
|
|
|
|
const jb_dky = ref(false)
|
|
|
|
|
jb_pl.value =
|
|
|
|
|
adminInfo.$state.roleCode.filter(item => {
|
2024-09-13 20:04:19 +08:00
|
|
|
return item == 'jb_pl'
|
2024-06-24 16:38:59 +08:00
|
|
|
}).length != 0
|
|
|
|
|
? true
|
|
|
|
|
: false
|
|
|
|
|
jb_dky.value =
|
|
|
|
|
adminInfo.$state.roleCode.filter(item => {
|
2024-09-13 20:04:19 +08:00
|
|
|
return item == 'jb_dky'
|
2024-06-24 16:38:59 +08:00
|
|
|
}).length != 0
|
|
|
|
|
? true
|
|
|
|
|
: false
|
2024-05-16 18:56:13 +08:00
|
|
|
const tableStore = new TableStore({
|
2024-09-13 20:04:19 +08:00
|
|
|
url: '/supervision-boot/userReportNormal/userReportGoNetPage',
|
2024-05-16 18:56:13 +08:00
|
|
|
|
2024-09-13 20:04:19 +08:00
|
|
|
method: 'POST',
|
|
|
|
|
column: [
|
|
|
|
|
{title: '序号', type: 'seq', width: 80},
|
|
|
|
|
{field: 'projectName', title: '用户名称', minWidth: 170},
|
|
|
|
|
{
|
|
|
|
|
field: 'userType',
|
|
|
|
|
title: '用户性质',
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
formatter: (obj: any) => {
|
|
|
|
|
const userType = obj.row.userType
|
|
|
|
|
return getUserTypeName(userType)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{field: 'city', title: '所在地市', minWidth: 80},
|
|
|
|
|
{field: 'responsibleDepartment', title: '归口管理部门', minWidth: 130},
|
|
|
|
|
{
|
|
|
|
|
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: 'status',
|
|
|
|
|
title: '流程状态',
|
|
|
|
|
minWidth: 100,
|
|
|
|
|
render: 'tag',
|
|
|
|
|
custom: {
|
|
|
|
|
0: 'warning',
|
|
|
|
|
1: 'primary',
|
|
|
|
|
2: 'success',
|
|
|
|
|
3: 'danger',
|
|
|
|
|
4: 'warning'
|
|
|
|
|
},
|
|
|
|
|
replaceValue: {
|
|
|
|
|
0: '待提交审批',
|
|
|
|
|
1: '审批中',
|
|
|
|
|
2: '审批通过',
|
|
|
|
|
3: '审批不通过',
|
|
|
|
|
4: '已取消'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'createBy',
|
|
|
|
|
title: '填报人',
|
|
|
|
|
minWidth: 80,
|
|
|
|
|
formatter: (row: any) => {
|
|
|
|
|
return dictData.state.userList.filter(item => item.id == row.cellValue)[0]?.name
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{field: 'createTime', title: '创建时间', minWidth: 100},
|
|
|
|
|
{
|
|
|
|
|
title: '操作',
|
|
|
|
|
minWidth: 180,
|
|
|
|
|
fixed: 'right',
|
|
|
|
|
render: 'buttons',
|
|
|
|
|
buttons: [
|
2024-05-16 18:56:13 +08:00
|
|
|
{
|
2024-09-13 20:04:19 +08:00
|
|
|
name: 'productSetting',
|
|
|
|
|
title: '流程详情',
|
|
|
|
|
type: 'primary',
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
disabled: row => {
|
|
|
|
|
return !row.processInstanceId
|
|
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
handleAudit(row.processInstanceId)
|
|
|
|
|
}
|
2024-05-16 18:56:13 +08:00
|
|
|
},
|
|
|
|
|
{
|
2024-09-13 20:04:19 +08:00
|
|
|
name: 'edit',
|
|
|
|
|
title: '编辑',
|
|
|
|
|
type: 'primary',
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
showDisabled: row => {
|
|
|
|
|
return !(row.status == 0 || row.status == 3)
|
|
|
|
|
},
|
|
|
|
|
disabled: row => {
|
|
|
|
|
return !(row.status == 0 || row.status == 3)
|
|
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
titleButton1.value = '编辑'
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
addForms.value.open(row)
|
|
|
|
|
}, 0)
|
|
|
|
|
}
|
2024-05-16 18:56:13 +08:00
|
|
|
},
|
2024-05-21 08:48:39 +08:00
|
|
|
{
|
2024-09-13 20:04:19 +08:00
|
|
|
name: 'edit',
|
|
|
|
|
title: '重新发起',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
disabled: row => {
|
|
|
|
|
return row.createBy != adminInfo.$state.id || !(row.status == 4)
|
|
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
titleButton1.value = '重新发起'
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
addForms.value.open(row)
|
|
|
|
|
}, 0)
|
|
|
|
|
}
|
2024-05-21 08:48:39 +08:00
|
|
|
},
|
2024-06-05 15:08:24 +08:00
|
|
|
{
|
2024-09-13 20:04:19 +08:00
|
|
|
name: 'cancel',
|
|
|
|
|
title: '取消',
|
|
|
|
|
type: 'danger',
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
disabled: row => {
|
|
|
|
|
return row.createBy != adminInfo.$state.id || row.status !== 1
|
|
|
|
|
},
|
|
|
|
|
click: row => {
|
|
|
|
|
cancelLeave(row)
|
|
|
|
|
}
|
2024-05-16 18:56:13 +08:00
|
|
|
}
|
2024-09-13 20:04:19 +08:00
|
|
|
]
|
2024-05-16 18:56:13 +08:00
|
|
|
}
|
2024-09-13 20:04:19 +08:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
beforeSearchFun: () => {
|
|
|
|
|
tableStore.table.params.userReportId = bussId.value
|
|
|
|
|
tableStore.table.params.type = bussType.value
|
|
|
|
|
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
|
|
|
|
|
tableStore.table.params.relationUserName = tableStore.table.params.userName
|
|
|
|
|
}
|
2024-05-16 18:56:13 +08:00
|
|
|
})
|
2024-05-28 11:01:50 +08:00
|
|
|
tableStore.table.params.city = ''
|
|
|
|
|
tableStore.table.params.projectName = ''
|
2024-05-16 16:22:18 +08:00
|
|
|
|
2024-05-17 13:39:55 +08:00
|
|
|
const dialogVisible = ref(false)
|
2024-05-21 08:48:39 +08:00
|
|
|
const bussId = ref()
|
2024-05-28 11:01:50 +08:00
|
|
|
bussId.value = currentRoute.value.query.id
|
2024-05-17 13:39:55 +08:00
|
|
|
|
2024-05-21 08:48:39 +08:00
|
|
|
const bussType = ref()
|
2024-05-28 11:01:50 +08:00
|
|
|
bussType.value = Number(currentRoute.value.query.type)
|
2024-05-21 08:48:39 +08:00
|
|
|
|
|
|
|
|
const titleButton = ref()
|
2024-06-20 18:16:32 +08:00
|
|
|
const titleButton1 = ref()
|
2024-05-16 18:56:13 +08:00
|
|
|
|
|
|
|
|
provide('tableStore', tableStore)
|
2024-07-16 11:49:35 +08:00
|
|
|
const handleVisibilityChange = async () => {
|
2024-09-13 20:04:19 +08:00
|
|
|
if (document.visibilityState === 'visible') {
|
|
|
|
|
// 在这里执行页面回到回到当前页签需要做的事情
|
|
|
|
|
await tableStore.index()
|
|
|
|
|
} else if (document.visibilityState === 'hidden') {
|
|
|
|
|
// 在这里执行页面离开时需要做的事情
|
|
|
|
|
}
|
2024-07-16 11:49:35 +08:00
|
|
|
}
|
2024-09-13 20:04:19 +08:00
|
|
|
onMounted(async () => {
|
|
|
|
|
tableStore.index()
|
|
|
|
|
document.addEventListener('visibilitychange', handleVisibilityChange)
|
|
|
|
|
if (query.fangAnId) {
|
|
|
|
|
//根据id查询待编辑的数据
|
|
|
|
|
await userReportGoNetById({id: query.fangAnId}).then(res => {
|
|
|
|
|
if (res && res.code == 'A0000') {
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
titleButton1.value = '重新发起'
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
res.data.id = query.fangAnId
|
|
|
|
|
addForms.value.open(res.data)
|
|
|
|
|
}, 0)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-16 11:49:35 +08:00
|
|
|
})
|
|
|
|
|
onUnmounted(() => {
|
2024-09-13 20:04:19 +08:00
|
|
|
document.removeEventListener('visibilitychange', handleVisibilityChange)
|
2024-05-16 18:56:13 +08:00
|
|
|
})
|
2024-06-20 18:16:32 +08:00
|
|
|
/**取消流程操作*/
|
|
|
|
|
const cancelLeave = async (row: any) => {
|
2024-09-13 20:04:19 +08:00
|
|
|
// 二次确认
|
|
|
|
|
const {value} = await ElMessageBox.prompt('请输入取消原因', '取消流程', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
inputType: 'textarea',
|
|
|
|
|
inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
|
|
|
|
|
inputErrorMessage: '取消原因不能为空'
|
|
|
|
|
})
|
|
|
|
|
// 发起取消
|
|
|
|
|
let data = {
|
|
|
|
|
id: row.id,
|
|
|
|
|
processInstanceId: row.processInstanceId,
|
|
|
|
|
reason: value
|
|
|
|
|
}
|
|
|
|
|
await cancel(data)
|
|
|
|
|
ElMessage.success('取消成功')
|
|
|
|
|
// 加载数据
|
|
|
|
|
tableStore.index()
|
2024-06-20 18:16:32 +08:00
|
|
|
}
|
2024-05-21 08:48:39 +08:00
|
|
|
/** 处理审批按钮 */
|
|
|
|
|
const handleAudit = (instanceId: any) => {
|
2024-09-13 20:04:19 +08:00
|
|
|
push({
|
|
|
|
|
name: 'BpmProcessInstanceDetail',
|
|
|
|
|
query: {
|
|
|
|
|
id: instanceId
|
|
|
|
|
}
|
|
|
|
|
})
|
2024-05-21 08:48:39 +08:00
|
|
|
}
|
2024-06-20 18:16:32 +08:00
|
|
|
if (bussType.value === 0) {
|
2024-09-13 20:04:19 +08:00
|
|
|
titleButton.value = '入网设计方案申请'
|
2024-06-20 18:16:32 +08:00
|
|
|
} else {
|
2024-09-13 20:04:19 +08:00
|
|
|
titleButton.value = '治理工程申请'
|
2024-06-20 18:16:32 +08:00
|
|
|
}
|
2024-05-21 08:48:39 +08:00
|
|
|
const addForms = ref()
|
2024-05-28 11:01:50 +08:00
|
|
|
const toGoNet = () => {
|
2024-09-13 20:04:19 +08:00
|
|
|
dialogVisible.value = true
|
|
|
|
|
if (bussType.value === 0) {
|
|
|
|
|
titleButton1.value = '入网设计方案申请'
|
|
|
|
|
} else {
|
|
|
|
|
titleButton1.value = '治理工程申请'
|
|
|
|
|
}
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
addForms.value.open()
|
|
|
|
|
}, 0)
|
2024-05-21 08:48:39 +08:00
|
|
|
}
|
2024-05-16 18:56:13 +08:00
|
|
|
|
|
|
|
|
/**获取用户性质*/
|
|
|
|
|
const getUserTypeName = (userType: any) => {
|
2024-09-13 20:04:19 +08:00
|
|
|
if (userType === 0) {
|
2024-05-16 18:56:13 +08:00
|
|
|
return '新建电网工程'
|
2024-09-13 20:04:19 +08:00
|
|
|
}
|
|
|
|
|
if (userType === 1) {
|
|
|
|
|
return '扩建电网工程'
|
|
|
|
|
}
|
|
|
|
|
if (userType === 2) {
|
|
|
|
|
return '新建非线性负荷用户'
|
|
|
|
|
}
|
|
|
|
|
if (userType === 3) {
|
|
|
|
|
return '扩建非线性负荷用户'
|
|
|
|
|
}
|
|
|
|
|
if (userType === 4) {
|
|
|
|
|
return '新建新能源发电站'
|
|
|
|
|
}
|
|
|
|
|
if (userType === 5) {
|
|
|
|
|
return '扩建新能源发电站'
|
|
|
|
|
}
|
|
|
|
|
if (userType === 6) {
|
|
|
|
|
return '敏感及重要用户'
|
|
|
|
|
}
|
|
|
|
|
return '新建电网工程'
|
2024-05-16 18:56:13 +08:00
|
|
|
}
|
|
|
|
|
</script>
|
2024-05-28 11:01:50 +08:00
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.header_btn {
|
2024-09-13 20:04:19 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 60px;
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 13px 15px;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: 1px solid #dddfe6;
|
2024-05-28 11:01:50 +08:00
|
|
|
}
|
|
|
|
|
</style>
|