2024-05-16 10:50:06 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div>
|
2024-06-24 14:29:20 +08:00
|
|
|
|
<TableHeader ref="TableHeaderRef">
|
|
|
|
|
|
<template #select>
|
2024-08-23 10:11:30 +08:00
|
|
|
|
<el-form-item label="项目名称">
|
2024-10-16 17:54:55 +08:00
|
|
|
|
<el-input style="width: 200px" placeholder="请输入项目名称" v-model="tableStore.table.params.projectName"
|
|
|
|
|
|
clearable></el-input>
|
2024-05-16 10:50:06 +08:00
|
|
|
|
</el-form-item>
|
2024-06-13 13:32:50 +08:00
|
|
|
|
<el-form-item label="所在地市">
|
|
|
|
|
|
<el-select v-model="tableStore.table.params.city" clearable placeholder="请选择所在地市">
|
2024-10-16 17:54:55 +08:00
|
|
|
|
<el-option v-for="item in areaOptionList" :key="item.id" :label="item.name"
|
|
|
|
|
|
:value="item.name"></el-option>
|
2024-05-16 10:50:06 +08:00
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</template>
|
2024-06-24 14:29:20 +08:00
|
|
|
|
<template #operation>
|
|
|
|
|
|
<el-button icon="el-icon-Plus" type="primary" @click="addFormModel">新增</el-button>
|
2024-09-12 16:15:14 +08:00
|
|
|
|
<el-button icon="el-icon-Delete" type="primary" @click="deleteEven">删除</el-button>
|
2024-10-16 17:54:55 +08:00
|
|
|
|
<el-button icon="el-icon-Download" type="primary" @click="exportExcelTemplate" :loading="loading">模板下载</el-button>
|
2024-06-24 16:38:59 +08:00
|
|
|
|
<el-button icon="el-icon-Upload" type="primary" @click="importUserData">批量导入</el-button>
|
2024-06-24 14:29:20 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</TableHeader>
|
2024-10-16 17:54:55 +08:00
|
|
|
|
<Table ref="tableRef" :checkbox-config="checkboxConfig" />
|
2024-05-22 20:20:16 +08:00
|
|
|
|
|
2024-08-21 16:05:06 +08:00
|
|
|
|
<el-dialog title="详情" width="80%" v-model="dialogShow" v-if="dialogShow">
|
2024-08-15 20:31:02 +08:00
|
|
|
|
<DetailInfo :id="userId" :openType="'sourcesOfInterference'"></DetailInfo>
|
|
|
|
|
|
</el-dialog>
|
2024-06-24 14:29:20 +08:00
|
|
|
|
<!-- 批量导入 -->
|
|
|
|
|
|
<sensitive-user-popup ref="sensitiveUserPopup" />
|
2024-05-16 10:50:06 +08:00
|
|
|
|
|
2024-06-24 14:29:20 +08:00
|
|
|
|
<!-- 查看详情 detail 新增/修改 create-->
|
2024-08-15 20:31:02 +08:00
|
|
|
|
<addForm ref="addForms" @onSubmit="tableStore.index()" :openType="'sourcesOfInterference'"></addForm>
|
2024-06-24 14:29:20 +08:00
|
|
|
|
</div>
|
2024-05-16 10:50:06 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
2024-09-14 10:38:43 +08:00
|
|
|
|
import { ref, onMounted, provide, nextTick, watch } from 'vue'
|
2024-05-16 10:50:06 +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-24 14:29:20 +08:00
|
|
|
|
import addForm from '@/views/pqs/supervise/interfere/components/undocumented/addForm.vue'
|
|
|
|
|
|
import SensitiveUserPopup from './sensitiveUserPopup.vue'
|
2024-05-16 10:50:06 +08:00
|
|
|
|
import { useDictData } from '@/stores/dictData'
|
2024-09-12 11:23:41 +08:00
|
|
|
|
import { useRouter } from 'vue-router'
|
2024-06-24 14:29:20 +08:00
|
|
|
|
import { downloadSensitiveReportTemplate } from '@/api/supervision-boot/userReport/form'
|
2024-05-22 20:20:16 +08:00
|
|
|
|
import DetailInfo from '../../interfere/components/undocumented/detail.vue'
|
2024-09-14 10:38:43 +08:00
|
|
|
|
import { cancelFormData, getUserReportById } from '@/api/supervision-boot/interfere/index'
|
2024-09-12 16:15:14 +08:00
|
|
|
|
import { deleteUserReport } from '@/api/supervision-boot/delete/index'
|
2024-06-24 14:29:20 +08:00
|
|
|
|
const addForms = ref()
|
2024-05-16 10:50:06 +08:00
|
|
|
|
const dictData = useDictData()
|
2024-06-24 14:29:20 +08:00
|
|
|
|
const sensitiveUserPopup = ref()
|
2024-05-16 10:50:06 +08:00
|
|
|
|
const TableHeaderRef = ref()
|
2024-10-16 17:54:55 +08:00
|
|
|
|
const loading = ref(false)
|
2024-05-16 10:50:06 +08:00
|
|
|
|
const areaOptionList = dictData.getBasicData('jibei_area')
|
2024-09-12 11:23:41 +08:00
|
|
|
|
const { push, options, currentRoute } = useRouter()
|
2024-06-24 14:29:20 +08:00
|
|
|
|
import { useAdminInfo } from '@/stores/adminInfo'
|
|
|
|
|
|
//获取登陆用户姓名和部门
|
|
|
|
|
|
const adminInfo = useAdminInfo()
|
2024-05-16 10:50:06 +08:00
|
|
|
|
const tableStore = new TableStore({
|
|
|
|
|
|
url: '/supervision-boot/userReport/getInterferenceUserPage',
|
|
|
|
|
|
publicHeight: 65,
|
|
|
|
|
|
method: 'POST',
|
|
|
|
|
|
column: [
|
2024-10-16 17:54:55 +08:00
|
|
|
|
{
|
2024-09-12 16:15:14 +08:00
|
|
|
|
width: '60',
|
|
|
|
|
|
type: 'checkbox'
|
|
|
|
|
|
},
|
2024-05-16 10:50:06 +08:00
|
|
|
|
{ title: '序号', type: 'seq', width: 80 },
|
2024-08-23 10:11:30 +08:00
|
|
|
|
{ field: 'city', title: '所在地市', minWidth: 80 },
|
|
|
|
|
|
{ field: 'substation', title: '厂站名称', minWidth: 100 },
|
|
|
|
|
|
{ field: 'projectName', title: '项目名称', minWidth: 170 },
|
2024-05-16 10:50:06 +08:00
|
|
|
|
{
|
|
|
|
|
|
field: 'userType',
|
|
|
|
|
|
title: '用户性质',
|
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
|
formatter: (obj: any) => {
|
|
|
|
|
|
const userType = obj.row.userType
|
|
|
|
|
|
return getUserTypeName(userType)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-09-12 11:23:41 +08:00
|
|
|
|
|
2024-05-16 10:50:06 +08:00
|
|
|
|
{ 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: '退运'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-09-12 11:23:41 +08:00
|
|
|
|
{
|
|
|
|
|
|
field: 'status',
|
|
|
|
|
|
title: '流程状态',
|
|
|
|
|
|
minWidth: 100,
|
|
|
|
|
|
render: 'tag',
|
|
|
|
|
|
custom: {
|
|
|
|
|
|
0: 'warning',
|
|
|
|
|
|
1: 'primary',
|
|
|
|
|
|
2: 'success',
|
|
|
|
|
|
3: 'danger',
|
|
|
|
|
|
4: 'warning'
|
|
|
|
|
|
},
|
|
|
|
|
|
replaceValue: {
|
|
|
|
|
|
0: '待提交审批',
|
|
|
|
|
|
1: '审批中',
|
|
|
|
|
|
2: '审批通过',
|
|
|
|
|
|
3: '审批不通过',
|
|
|
|
|
|
4: '已取消'
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
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 10:50:06 +08:00
|
|
|
|
|
2024-05-16 13:23:01 +08:00
|
|
|
|
{
|
2024-05-16 10:50:06 +08:00
|
|
|
|
title: '操作',
|
|
|
|
|
|
minWidth: 150,
|
|
|
|
|
|
fixed: 'right',
|
|
|
|
|
|
render: 'buttons',
|
|
|
|
|
|
buttons: [
|
|
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
2024-05-16 13:23:01 +08:00
|
|
|
|
title: '详细信息',
|
2024-05-16 10:50:06 +08:00
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
click: row => {
|
2024-05-22 20:20:16 +08:00
|
|
|
|
lookInfo(row.id)
|
2024-05-16 10:50:06 +08:00
|
|
|
|
}
|
2024-06-24 14:29:20 +08:00
|
|
|
|
},
|
2024-09-12 11:23:41 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
|
title: '流程详情',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
|
|
|
|
|
return !row.processInstanceId
|
|
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
handleAudit(row.processInstanceId, row.historyInstanceId)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-06-24 14:29:20 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'edit',
|
|
|
|
|
|
title: '编辑',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
|
render: 'basicButton',
|
2024-09-12 11:23:41 +08:00
|
|
|
|
// showDisabled: row => {
|
|
|
|
|
|
// return (
|
|
|
|
|
|
// (row.city != adminInfo.$state.deptName && row.createBy != adminInfo.$state.id) ||
|
|
|
|
|
|
// !(row.dataType == 1)
|
|
|
|
|
|
// )
|
|
|
|
|
|
// },
|
|
|
|
|
|
disabled: row => {
|
|
|
|
|
|
return !(row.status == 0)
|
2024-06-24 14:29:20 +08:00
|
|
|
|
},
|
2024-07-02 14:10:21 +08:00
|
|
|
|
|
2024-06-24 14:29:20 +08:00
|
|
|
|
click: row => {
|
|
|
|
|
|
addForms.value.filterUsers([6])
|
2024-10-16 17:54:55 +08:00
|
|
|
|
|
2024-06-24 14:29:20 +08:00
|
|
|
|
addForms.value.open({
|
|
|
|
|
|
title: '编辑',
|
|
|
|
|
|
row: row
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2024-09-12 11:23:41 +08:00
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
name: 'edit',
|
|
|
|
|
|
title: '重新发起',
|
|
|
|
|
|
type: 'warning',
|
|
|
|
|
|
icon: 'el-icon-Open',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
|
|
|
|
|
return row.createBy != adminInfo.$state.id || !(row.status == 3 || row.status == 4)
|
|
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
addForms.value.setcontroFlag()
|
|
|
|
|
|
addForms.value.open({
|
|
|
|
|
|
title: '重新发起',
|
|
|
|
|
|
row: row
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
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 10:50:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
]
|
2024-05-16 13:23:01 +08:00
|
|
|
|
}
|
2024-05-16 10:50:06 +08:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
beforeSearchFun: () => {
|
2024-05-28 11:06:18 +08:00
|
|
|
|
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
|
2024-05-16 10:50:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
2024-06-24 14:29:20 +08:00
|
|
|
|
tableStore.table.params.city = ''
|
2024-08-15 20:31:02 +08:00
|
|
|
|
tableStore.table.params.orgId = adminInfo.$state.deptId
|
2024-06-24 14:29:20 +08:00
|
|
|
|
tableStore.table.params.projectName = ''
|
2024-05-16 10:50:06 +08:00
|
|
|
|
tableStore.table.params.loadType = ''
|
|
|
|
|
|
tableStore.table.params.userName = ''
|
|
|
|
|
|
tableStore.table.params.relationUserName = ''
|
|
|
|
|
|
tableStore.table.params.aisFileUpload = ''
|
|
|
|
|
|
|
2024-05-22 20:20:16 +08:00
|
|
|
|
const userId = ref()
|
|
|
|
|
|
const dialogShow = ref(false)
|
|
|
|
|
|
|
2024-06-24 14:29:20 +08:00
|
|
|
|
const lookInfo = (id: string) => {
|
2024-05-22 20:20:16 +08:00
|
|
|
|
userId.value = id
|
|
|
|
|
|
dialogShow.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-05-16 10:50:06 +08:00
|
|
|
|
provide('tableStore', tableStore)
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
})
|
2024-09-12 16:15:14 +08:00
|
|
|
|
// 禁止点击
|
|
|
|
|
|
const checkboxConfig = reactive({
|
|
|
|
|
|
checkMethod: ({ row }) => {
|
|
|
|
|
|
return adminInfo.roleCode.includes('delete_info')
|
|
|
|
|
|
? true
|
|
|
|
|
|
: row.createBy == adminInfo.$state.id && row.status == 0
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
const deleteEven = () => {
|
|
|
|
|
|
if (tableStore.table.selection.length == 0) {
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
type: 'warning',
|
|
|
|
|
|
message: '请选择要删除的数据'
|
|
|
|
|
|
})
|
|
|
|
|
|
} else {
|
2024-10-30 09:29:39 +08:00
|
|
|
|
|
|
|
|
|
|
ElMessageBox.confirm('此操作将永久删除, 是否继续?', '提示', {
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
})
|
|
|
|
|
|
.then(() => {
|
|
|
|
|
|
|
|
|
|
|
|
deleteUserReport(tableStore.table.selection.map(item => item.id)).then(res => {
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
type: 'success',
|
|
|
|
|
|
message: '删除成功!'
|
|
|
|
|
|
})
|
|
|
|
|
|
tableStore.index()
|
2024-09-12 16:15:14 +08:00
|
|
|
|
})
|
|
|
|
|
|
})
|
2024-10-30 09:29:39 +08:00
|
|
|
|
|
2024-09-12 16:15:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-09-12 11:23:41 +08:00
|
|
|
|
/**取消流程操作*/
|
|
|
|
|
|
const cancelLeave = async (row: any) => {
|
|
|
|
|
|
// 二次确认
|
|
|
|
|
|
const { value } = await ElMessageBox.prompt('请输入取消原因', '取消流程', {
|
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
inputType: 'textarea',
|
|
|
|
|
|
inputPattern: /^[\s\S]*.*\S[\s\S]*$/, // 判断非空,且非空格
|
|
|
|
|
|
inputErrorMessage: '取消原因不能为空'
|
|
|
|
|
|
})
|
|
|
|
|
|
// 发起取消
|
|
|
|
|
|
let data = {
|
|
|
|
|
|
id: row.id,
|
|
|
|
|
|
processInstanceId: row.processInstanceId,
|
|
|
|
|
|
dataType: 1,
|
|
|
|
|
|
reason: value
|
|
|
|
|
|
}
|
|
|
|
|
|
await cancelFormData(data)
|
|
|
|
|
|
ElMessage.success('取消成功')
|
|
|
|
|
|
// 加载数据
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
}
|
|
|
|
|
|
/** 处理审批按钮 */
|
|
|
|
|
|
const handleAudit = (instanceId: any, historyInstanceId: any) => {
|
|
|
|
|
|
push({
|
|
|
|
|
|
name: 'BpmProcessInstanceDetail',
|
|
|
|
|
|
state: {
|
|
|
|
|
|
id: instanceId,
|
|
|
|
|
|
historyInstanceId
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2024-06-24 14:29:20 +08:00
|
|
|
|
// 新增
|
|
|
|
|
|
const addFormModel = () => {
|
|
|
|
|
|
addForms.value.filterUsers([6])
|
2024-05-16 10:50:06 +08:00
|
|
|
|
|
2024-06-24 14:29:20 +08:00
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
addForms.value.open({
|
|
|
|
|
|
title: '用户档案录入'
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2024-05-16 10:50:06 +08:00
|
|
|
|
/**获取用户性质*/
|
|
|
|
|
|
const getUserTypeName = (userType: any) => {
|
|
|
|
|
|
if (userType === 0) {
|
|
|
|
|
|
return '新建电网工程'
|
|
|
|
|
|
}
|
|
|
|
|
|
if (userType === 1) {
|
|
|
|
|
|
return '扩建电网工程'
|
|
|
|
|
|
}
|
|
|
|
|
|
if (userType === 2) {
|
2024-06-24 16:38:59 +08:00
|
|
|
|
return '新建非线性负荷用户'
|
2024-05-16 10:50:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (userType === 3) {
|
|
|
|
|
|
return '扩建非线性负荷用户'
|
|
|
|
|
|
}
|
|
|
|
|
|
if (userType === 4) {
|
|
|
|
|
|
return '新建新能源发电站'
|
|
|
|
|
|
}
|
|
|
|
|
|
if (userType === 5) {
|
|
|
|
|
|
return '扩建新能源发电站'
|
|
|
|
|
|
}
|
|
|
|
|
|
if (userType === 6) {
|
|
|
|
|
|
return '敏感及重要用户'
|
|
|
|
|
|
}
|
|
|
|
|
|
return '新建电网工程'
|
|
|
|
|
|
}
|
2024-06-24 14:29:20 +08:00
|
|
|
|
//导出模板
|
2024-10-16 17:54:55 +08:00
|
|
|
|
const exportExcelTemplate = async() => {
|
|
|
|
|
|
loading.value = true
|
|
|
|
|
|
await downloadSensitiveReportTemplate().then((res: any) => {
|
2024-06-24 14:29:20 +08:00
|
|
|
|
let blob = new Blob([res], {
|
|
|
|
|
|
type: 'application/vnd.ms-excel'
|
|
|
|
|
|
})
|
|
|
|
|
|
const url = window.URL.createObjectURL(blob)
|
|
|
|
|
|
const link = document.createElement('a')
|
|
|
|
|
|
link.href = url
|
|
|
|
|
|
link.download = '干扰源用户台账模板'
|
|
|
|
|
|
document.body.appendChild(link)
|
|
|
|
|
|
link.click()
|
|
|
|
|
|
link.remove()
|
|
|
|
|
|
})
|
2024-10-16 17:54:55 +08:00
|
|
|
|
await setTimeout(() => {
|
|
|
|
|
|
loading.value = false
|
|
|
|
|
|
},0)
|
2024-06-24 14:29:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//批量导入用户数据
|
|
|
|
|
|
const importUserData = () => {
|
|
|
|
|
|
sensitiveUserPopup.value.open('导入干扰源用户')
|
|
|
|
|
|
}
|
2024-09-14 10:38:43 +08:00
|
|
|
|
|
2024-10-16 17:54:55 +08:00
|
|
|
|
const props = defineProps({ id: { type: String, default: 'null' } })
|
2024-09-14 10:38:43 +08:00
|
|
|
|
watch(() => props.id, async (newValue, oldValue) => {
|
2024-10-16 17:54:55 +08:00
|
|
|
|
if (newValue === 'null') return // 直接返回,避免后续逻辑执行
|
|
|
|
|
|
const fullId = newValue.split('@')[0]
|
|
|
|
|
|
let nowTime = Date.now()
|
|
|
|
|
|
const routeTime = Number(newValue.split('@')[1])
|
|
|
|
|
|
if (isNaN(routeTime) || nowTime - routeTime > import.meta.env.VITE_ROUTE_TIME_OUT) return // 路由时间超过500ms,则不执行
|
|
|
|
|
|
await getUserReportById(fullId).then(res => {
|
|
|
|
|
|
if (res && res.code == 'A0000') {
|
|
|
|
|
|
addForms.value.setcontroFlag()
|
|
|
|
|
|
addForms.value.open({
|
|
|
|
|
|
title: '重新发起',
|
|
|
|
|
|
row: res.data
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}, { immediate: true })
|
2024-05-16 10:50:06 +08:00
|
|
|
|
</script>
|