Files
admin-sjzx/src/views/pqs/supervise/interfere/components/normalizationManager/interferenceUserTable.vue

257 lines
8.3 KiB
Vue
Raw Normal View History

2024-05-16 14:12:00 +08:00
<template>
<div>
2024-05-28 11:01:50 +08:00
<TableHeader ref="TableHeaderRef">
2024-05-16 18:56:13 +08:00
<template #select>
<el-form-item label="用户名称">
2024-06-03 18:00:32 +08:00
<el-input v-model="tableStore.table.params.projectName" placeholder="请输入用户名称"></el-input>
2024-05-16 14:12:00 +08:00
</el-form-item>
2024-05-28 11:01:50 +08:00
<el-form-item label="所属地市">
<el-select v-model="tableStore.table.params.city" clearable placeholder="请选择所属地市">
2024-05-16 14:12:00 +08:00
<el-option
2024-05-28 11:01:50 +08:00
v-for="item in areaOptionList"
:key="item.id"
:label="item.name"
:value="item.name"
2024-05-16 14:12:00 +08:00
></el-option>
</el-select>
</el-form-item>
2024-06-05 14:34:23 +08:00
2024-05-16 14:12:00 +08:00
</template>
2024-05-16 18:56:13 +08:00
<template #operation>
2024-05-28 11:01:50 +08:00
<!-- <el-button icon='el-icon-Download' type='primary'>导出</el-button> -->
2024-05-16 18:56:13 +08:00
</template>
</TableHeader>
2024-05-28 11:01:50 +08:00
<Table ref="tableRef" />
2024-05-16 18:56:13 +08:00
</div>
2024-05-16 14:12:00 +08:00
2024-05-28 11:01:50 +08:00
<el-dialog
title="干扰源用户详细信息"
v-model="dialogVisible"
width="65%"
:append-to-body="true"
:close-on-click-modal="false"
draggable
>
<BpmUserReportDetail :id="interId" ref="detailsRef"></BpmUserReportDetail>
2024-05-21 08:48:39 +08:00
</el-dialog>
2024-05-16 14:12:00 +08:00
</template>
2024-05-28 11:01:50 +08:00
<script setup lang="ts">
2024-05-17 13:39:55 +08:00
defineOptions({
name: 'supervision/interferenceUserTable'
})
2024-05-16 14:12:00 +08:00
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 { useDictData } from '@/stores/dictData'
2024-05-29 15:06:53 +08:00
import { getUserReportById } from '@/api/supervision-boot/userReport/form'
2024-05-17 13:39:55 +08:00
import BpmUserReportDetail from '../../components/undocumented/detail.vue'
2024-06-05 15:08:24 +08:00
import { useAdminInfo } from '@/stores/adminInfo'
2024-05-16 14:12:00 +08:00
const dictData = useDictData()
const areaOptionList = dictData.getBasicData('jibei_area')
2024-06-05 14:34:23 +08:00
const statusSelect = dictData.statusSelect()
2024-06-05 15:08:24 +08:00
//获取登陆用户姓名和部门
const adminInfo = useAdminInfo()
console.log(adminInfo.$state.roleCode, '++++++++++++++++')
2024-05-16 16:22:18 +08:00
const { push } = useRouter()
const TableHeaderRef = ref()
2024-05-16 14:12:00 +08:00
const tableStore = new TableStore({
url: '/supervision-boot/userReport/getInterferenceUserPage',
publicHeight: 65,
method: 'POST',
column: [
{ title: '序号', type: 'seq', width: 80 },
2024-05-28 11:01:50 +08:00
{ field: 'city', title: '所属地市', minWidth: 80 },
{ field: 'projectName', title: '用户名称', minWidth: 170 },
2024-05-16 14:12:00 +08:00
{
field: 'userType',
title: '用户性质',
minWidth: 150,
formatter: (obj: any) => {
const userType = obj.row.userType
return getUserTypeName(userType)
}
},
2024-05-28 11:01:50 +08:00
// { field: 'responsibleDepartment', title: '归口管理部门', minWidth: 130 },
2024-05-16 14:12:00 +08:00
{
field: 'userStatus',
title: '用户状态',
minWidth: 100,
render: 'tag',
custom: {
0: 'primary',
1: 'primary',
2: 'success',
3: 'warning'
},
replaceValue: {
0: '可研',
1: '建设',
2: '运行',
3: '退运'
}
},
2024-06-03 18:00:32 +08:00
{
field: 'substation',
title: '变电站',
minWidth: 100,
formatter: (row: any) => {
row.cellValue = row.cellValue ? row.cellValue : '/'
return row.cellValue
}
},
2024-05-21 08:48:39 +08:00
{
title: '详细信息',
2024-05-16 19:17:23 +08:00
minWidth: 100,
render: 'buttons',
buttons: [
{
name: 'productSetting',
title: '详情',
type: 'primary',
icon: 'el-icon-EditPen',
render: 'basicButton',
click: row => {
2024-05-29 15:06:53 +08:00
open(row)
2024-05-16 19:17:23 +08:00
}
2024-05-21 08:48:39 +08:00
}
2024-05-16 19:17:23 +08:00
]
},
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 14:12:00 +08:00
{
title: '操作',
minWidth: 180,
fixed: 'right',
render: 'buttons',
buttons: [
{
name: 'productSetting',
2024-05-30 13:30:12 +08:00
title: '入网设计方案申请',
2024-05-16 14:12:00 +08:00
type: 'primary',
icon: 'el-icon-EditPen',
render: 'basicButton',
2024-06-05 15:08:24 +08:00
disabled: row => {
return (
adminInfo.$state.roleCode.filter(item => {
return item == 'jb_pl'
}) ||
adminInfo.$state.roleCode.filter(item => {
return item == 'jb_dky'
})
)
},
2024-05-16 14:12:00 +08:00
click: row => {
2024-05-29 15:06:53 +08:00
toFangAn(row, 0)
2024-05-16 14:12:00 +08:00
}
},
{
name: 'productSetting',
2024-05-30 13:30:12 +08:00
title: '治理工程申请',
2024-05-16 14:12:00 +08:00
type: 'primary',
icon: 'el-icon-EditPen',
render: 'basicButton',
2024-06-05 15:08:24 +08:00
disabled: row => {
return (
adminInfo.$state.roleCode.filter(item => {
return item != 'jb_pl'
}) ||
adminInfo.$state.roleCode.filter(item => {
return item == 'jb_dky'
})
)
},
2024-05-16 14:12:00 +08:00
click: row => {
2024-05-29 15:06:53 +08:00
toFangAn(row, 1)
2024-05-16 14:12:00 +08:00
}
}
]
}
],
beforeSearchFun: () => {
2024-05-28 11:01:50 +08:00
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
tableStore.table.params.relationUserName = tableStore.table.params.userName
2024-05-16 14:12:00 +08:00
}
})
2024-05-28 11:01:50 +08:00
tableStore.table.params.city = ''
tableStore.table.params.projectName = ''
2024-05-16 14:12:00 +08:00
tableStore.table.params.loadType = ''
tableStore.table.params.userName = ''
tableStore.table.params.relationUserName = ''
tableStore.table.params.aisFileUpload = ''
2024-05-17 13:39:55 +08:00
const dialogVisible = ref(false)
const interId = ref()
2024-05-16 14:12:00 +08:00
provide('tableStore', tableStore)
onMounted(() => {
tableStore.index()
})
2024-05-28 11:01:50 +08:00
const detailsRef = ref(null)
2024-05-17 13:39:55 +08:00
/** 打开弹窗 */
2024-05-29 15:06:53 +08:00
const open = async val => {
interId.value = val.id
2024-05-17 13:39:55 +08:00
dialogVisible.value = true
}
2024-05-29 15:06:53 +08:00
const needGovernance = ref()
2024-05-16 16:22:18 +08:00
/** 方案审查 */
2024-05-29 15:06:53 +08:00
const toFangAn = (row: any, typeNo: number) => {
//查询详情拿到needGovernance
/** 获得数据 */
getUserReportById(row.id).then(res => {
if (res.data.userType == '0' || res.data.userType == '1') {
needGovernance.value = res.data.userReportProjectPO?.needGovernance
} else if (
res.data.userType == '2' ||
res.data.userType == '3' ||
res.data.userType == '4' ||
res.data.userType == '5'
) {
needGovernance.value = res.data.userReportSubstationPO?.needGovernance
} else if (res.data.userType == '6') {
needGovernance.value = res.data.userReportSensitivePO?.needGovernance
2024-05-21 08:48:39 +08:00
}
2024-05-29 15:06:53 +08:00
push({
name: 'ProgramReview',
query: {
id: row.id,
type: typeNo,
needGovernance: needGovernance.value
}
})
2024-05-21 08:48:39 +08:00
})
2024-05-16 16:22:18 +08:00
}
2024-05-16 14:12:00 +08:00
/**获取用户性质*/
const getUserTypeName = (userType: any) => {
if (userType === 0) {
return '新建电网工程'
}
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 '新建电网工程'
}
</script>