2024-05-21 15:42:18 +08:00
|
|
|
|
<!---试运行列表-->
|
|
|
|
|
|
<template>
|
2024-05-27 20:13:28 +08:00
|
|
|
|
<div class="default-main">
|
2024-07-02 19:40:25 +08:00
|
|
|
|
<TableHeader area datePicker nextFlag theCurrentTime ref="TableHeaderRef">
|
2024-06-05 14:34:23 +08:00
|
|
|
|
<template #select>
|
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-22 17:47:47 +08:00
|
|
|
|
<template #operation>
|
2024-06-18 13:36:24 +08:00
|
|
|
|
<el-button icon="el-icon-Plus" type="primary" @click="startRunTest">试运行</el-button>
|
2024-05-22 17:47:47 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</TableHeader>
|
2024-06-18 13:36:24 +08:00
|
|
|
|
<Table ref="tableRef" :checkbox-config="checkboxConfig" />
|
2024-05-22 17:47:47 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- <el-dialog
|
|
|
|
|
|
v-model='timeDialog'
|
|
|
|
|
|
width='500px'
|
|
|
|
|
|
append-to-body
|
|
|
|
|
|
destroy-on-close>
|
|
|
|
|
|
<div class='block'>
|
|
|
|
|
|
<span class="demonstration">试运行时间</span>
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
:popper-append-to-body="false"
|
|
|
|
|
|
:v-model="dateValue"
|
|
|
|
|
|
format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
|
type="datetimerange"
|
2024-06-18 13:36:24 +08:00
|
|
|
|
range-separator="至"
|
2024-05-22 17:47:47 +08:00
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
|
end-placeholder="结束日期">
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class='block' style='text-align: center'>
|
|
|
|
|
|
<el-button type='primary' style='margin-top: 50px' @click='runTestSubmit'>确认</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-dialog>-->
|
2024-05-22 09:19:52 +08:00
|
|
|
|
</div>
|
2024-05-21 15:42:18 +08:00
|
|
|
|
</template>
|
2024-06-18 13:36:24 +08:00
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
import { ref, onMounted, provide, reactive } from 'vue'
|
2024-05-21 15:42:18 +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'
|
2024-05-22 17:47:47 +08:00
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
2024-07-05 09:05:22 +08:00
|
|
|
|
import { addRunTest, update, cancel } from '@/api/supervision-boot/lineRunTest'
|
2024-05-24 09:39:54 +08:00
|
|
|
|
import { formatDate } from '@/utils/formatTime'
|
2024-06-18 13:36:24 +08:00
|
|
|
|
import { VxeTablePropTypes } from 'vxe-table'
|
2024-06-19 19:37:39 +08:00
|
|
|
|
import { useAdminInfo } from '@/stores/adminInfo'
|
2024-07-02 16:12:42 +08:00
|
|
|
|
import { getFileNameAndFilePath } from '@/api/system-boot/file'
|
2024-05-21 15:42:18 +08:00
|
|
|
|
const dictData = useDictData()
|
2024-06-05 14:34:23 +08:00
|
|
|
|
const statusSelect = dictData.statusSelect()
|
2024-05-21 15:42:18 +08:00
|
|
|
|
const { push } = useRouter()
|
2024-06-19 19:37:39 +08:00
|
|
|
|
const adminInfo = useAdminInfo()
|
2024-05-21 15:42:18 +08:00
|
|
|
|
const TableHeaderRef = ref()
|
|
|
|
|
|
const tableRef = ref()
|
|
|
|
|
|
|
|
|
|
|
|
const tableStore = new TableStore({
|
|
|
|
|
|
url: '/supervision-boot/tempLinedebug/pageHasDebug',
|
|
|
|
|
|
method: 'POST',
|
|
|
|
|
|
column: [
|
2024-05-22 17:47:47 +08:00
|
|
|
|
{ title: '', type: 'checkbox', width: 40 },
|
|
|
|
|
|
{ field: 'lineName', title: '监测点名称', minWidth: 160 },
|
|
|
|
|
|
{ field: 'connectedBus', title: '接入母线', minWidth: 160 },
|
2024-07-02 16:12:42 +08:00
|
|
|
|
// { field: 'monitoringTerminalCode', title: '终端编号', minWidth: 140 },
|
2024-05-22 17:47:47 +08:00
|
|
|
|
{ field: 'monitoringTerminalName', title: '终端名称', minWidth: 140 },
|
|
|
|
|
|
{ field: 'powerSubstationName', title: '变电站', minWidth: 160 },
|
|
|
|
|
|
{ field: 'reason', title: '调试原因', minWidth: 160 },
|
2024-05-22 09:19:52 +08:00
|
|
|
|
{
|
|
|
|
|
|
field: 'testRunState',
|
|
|
|
|
|
title: '试运行状态',
|
|
|
|
|
|
minWidth: 100,
|
|
|
|
|
|
render: 'tag',
|
|
|
|
|
|
custom: {
|
|
|
|
|
|
0: 'primary',
|
|
|
|
|
|
2: 'success',
|
|
|
|
|
|
3: 'danger',
|
|
|
|
|
|
1: 'warning'
|
|
|
|
|
|
},
|
|
|
|
|
|
replaceValue: {
|
|
|
|
|
|
0: '待试运行',
|
|
|
|
|
|
1: '试运行中',
|
|
|
|
|
|
2: '试运行成功',
|
|
|
|
|
|
3: '试运行失败',
|
2024-05-22 17:47:47 +08:00
|
|
|
|
null: '待试运行'
|
2024-05-22 09:19:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-06-18 13:36:24 +08:00
|
|
|
|
{
|
|
|
|
|
|
field: 'testRunTime',
|
|
|
|
|
|
title: '试运行时间范围',
|
2024-07-02 16:57:18 +08:00
|
|
|
|
minWidth: 200,
|
2024-06-18 13:36:24 +08:00
|
|
|
|
formatter: row => {
|
|
|
|
|
|
return row.cellValue ? row.cellValue : '/'
|
2024-06-07 13:38:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-05-21 15:42:18 +08:00
|
|
|
|
{
|
|
|
|
|
|
field: 'status',
|
2024-06-13 13:32:50 +08:00
|
|
|
|
title: '流程状态',
|
2024-05-21 15:42:18 +08:00
|
|
|
|
minWidth: 100,
|
|
|
|
|
|
render: 'tag',
|
|
|
|
|
|
custom: {
|
2024-06-19 19:37:39 +08:00
|
|
|
|
0: 'warning',
|
2024-05-21 15:42:18 +08:00
|
|
|
|
1: 'primary',
|
|
|
|
|
|
2: 'success',
|
|
|
|
|
|
3: 'danger',
|
|
|
|
|
|
4: 'warning'
|
|
|
|
|
|
},
|
|
|
|
|
|
replaceValue: {
|
2024-06-19 19:37:39 +08:00
|
|
|
|
0: '待提交审批',
|
2024-05-21 15:42:18 +08:00
|
|
|
|
1: '审批中',
|
|
|
|
|
|
2: '审批通过',
|
|
|
|
|
|
3: '审批不通过',
|
|
|
|
|
|
4: '已取消',
|
2024-05-22 17:47:47 +08:00
|
|
|
|
null: '/',
|
|
|
|
|
|
9: '/'
|
2024-05-21 15:42:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-06-05 15:08:24 +08:00
|
|
|
|
{
|
|
|
|
|
|
field: 'createBy',
|
|
|
|
|
|
title: '填报人',
|
2024-07-02 16:57:18 +08:00
|
|
|
|
minWidth: 100,
|
2024-06-05 15:08:24 +08:00
|
|
|
|
formatter: (row: any) => {
|
|
|
|
|
|
return dictData.state.userList.filter(item => item.id == row.cellValue)[0]?.name
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-05-21 15:42:18 +08:00
|
|
|
|
{
|
|
|
|
|
|
title: '操作',
|
2024-07-02 16:57:18 +08:00
|
|
|
|
minWidth: 230,
|
2024-05-21 15:42:18 +08:00
|
|
|
|
fixed: 'right',
|
|
|
|
|
|
render: 'buttons',
|
|
|
|
|
|
buttons: [
|
|
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
2024-08-08 11:04:59 +08:00
|
|
|
|
title: '查看报告',
|
2024-05-21 15:42:18 +08:00
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
disabled: row => {
|
2024-08-08 11:04:59 +08:00
|
|
|
|
return row.testRunReport == null || row.testRunReport.length == 0
|
|
|
|
|
|
},
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
// const match = row.filePath.match(/excelreport(\/[^?#]*)/)
|
|
|
|
|
|
|
|
|
|
|
|
window.open(window.location.origin + '/#/previewFile?' + row.testRunReport)
|
2024-06-19 19:37:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-07-02 16:12:42 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
|
title: '下载报告',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
downloadTheReport(row.testRunReport)
|
|
|
|
|
|
},
|
|
|
|
|
|
disabled: row => {
|
|
|
|
|
|
return row.testRunReport == null || row.testRunReport.length == 0
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2024-08-08 11:04:59 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
|
title: '流程详情',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
handleAudit(row.processInstanceId, row.historyInstanceId)
|
|
|
|
|
|
},
|
|
|
|
|
|
disabled: row => {
|
|
|
|
|
|
return !row.processInstanceId
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2024-06-05 11:36:24 +08:00
|
|
|
|
{
|
|
|
|
|
|
name: 'productSetting',
|
|
|
|
|
|
title: '重新试运行',
|
|
|
|
|
|
type: 'primary',
|
|
|
|
|
|
icon: 'el-icon-EditPen',
|
|
|
|
|
|
render: 'basicButton',
|
|
|
|
|
|
click: row => {
|
|
|
|
|
|
monitorIds = []
|
|
|
|
|
|
monitorIds.push(row.id)
|
2024-07-05 09:05:22 +08:00
|
|
|
|
monitorIds = []
|
|
|
|
|
|
monitorIds.push(row.id)
|
|
|
|
|
|
const start = new Date()
|
|
|
|
|
|
start.setDate(start.getDate() + 1)
|
|
|
|
|
|
start.setHours(0, 0, 0)
|
|
|
|
|
|
|
|
|
|
|
|
const end = new Date()
|
|
|
|
|
|
end.setDate(end.getDate() + 3)
|
|
|
|
|
|
end.setHours(23, 59, 59)
|
|
|
|
|
|
const startString = formatDate(start, 'YYYY-MM-DD') // 转换为 YYYY-MM-DD 格式
|
|
|
|
|
|
const endString = formatDate(end, 'YYYY-MM-DD')
|
|
|
|
|
|
const data = {
|
|
|
|
|
|
startTime: startString,
|
|
|
|
|
|
endTime: endString,
|
|
|
|
|
|
lineIds: monitorIds,
|
|
|
|
|
|
operateType: 1,
|
|
|
|
|
|
id: row.id
|
|
|
|
|
|
}
|
|
|
|
|
|
update(data).then((res: any) => {
|
|
|
|
|
|
if (res.code === 'A0000') {
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
message: '发起试运行成功',
|
|
|
|
|
|
type: 'success'
|
|
|
|
|
|
})
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2024-06-05 11:36:24 +08:00
|
|
|
|
},
|
|
|
|
|
|
disabled: row => {
|
2024-07-05 09:05:22 +08:00
|
|
|
|
return !(row.status == 3 || row.status == 4)
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
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-06-05 11:36:24 +08:00
|
|
|
|
}
|
2024-05-22 17:47:47 +08:00
|
|
|
|
}
|
2024-05-21 15:42:18 +08:00
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
beforeSearchFun: () => {
|
|
|
|
|
|
tableStore.table.params.orgNo = tableStore.table.params.deptIndex
|
|
|
|
|
|
tableStore.table.params.statveList = [2]
|
|
|
|
|
|
// tableStore.table.params.relationUserName = tableStore.table.params.userName
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2024-06-18 13:36:24 +08:00
|
|
|
|
tableStore.table.params.status = ''
|
2024-05-21 15:42:18 +08:00
|
|
|
|
|
|
|
|
|
|
provide('tableStore', tableStore)
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
})
|
2024-06-18 13:36:24 +08:00
|
|
|
|
const checkboxConfig = reactive<VxeTablePropTypes.CheckboxConfig>({
|
|
|
|
|
|
labelField: '',
|
|
|
|
|
|
checkMethod: ({ row }) => {
|
|
|
|
|
|
return !(row.testRunState == 1 || row.testRunState == 2)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2024-05-21 15:42:18 +08:00
|
|
|
|
/** 处理审批按钮 */
|
2024-06-18 13:36:24 +08:00
|
|
|
|
const handleAudit = (instanceId: any, historyInstanceId: any) => {
|
2024-05-21 15:42:18 +08:00
|
|
|
|
push({
|
|
|
|
|
|
name: 'BpmProcessInstanceDetail',
|
2024-06-05 13:44:10 +08:00
|
|
|
|
state: {
|
|
|
|
|
|
id: instanceId,
|
|
|
|
|
|
historyInstanceId
|
2024-05-21 15:42:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2024-07-05 09:05:22 +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,
|
|
|
|
|
|
reason: value
|
|
|
|
|
|
}
|
|
|
|
|
|
await cancel(data).then(res => {
|
|
|
|
|
|
ElMessage.success('取消成功')
|
|
|
|
|
|
// 加载数据
|
|
|
|
|
|
tableStore.index()
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2024-05-22 09:19:52 +08:00
|
|
|
|
//试运行
|
2024-05-22 17:47:47 +08:00
|
|
|
|
let monitorIds: any = []
|
2024-05-22 19:53:25 +08:00
|
|
|
|
|
2024-05-22 09:19:52 +08:00
|
|
|
|
const startRunTest = () => {
|
2024-06-18 16:38:33 +08:00
|
|
|
|
monitorIds = []
|
2024-05-22 19:53:25 +08:00
|
|
|
|
let flag = true
|
2024-05-22 17:47:47 +08:00
|
|
|
|
if (tableStore.table.selection.length === 0) {
|
|
|
|
|
|
return ElMessage({
|
|
|
|
|
|
message: '请至少选择一个监测点进行试运行',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-05-22 09:19:52 +08:00
|
|
|
|
tableStore.table.selection.forEach(item => {
|
2024-05-22 17:47:47 +08:00
|
|
|
|
if (item.testRunState != 0) {
|
|
|
|
|
|
flag = false
|
2024-05-22 09:19:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (item.testRunState == 0) {
|
|
|
|
|
|
monitorIds.push(item.id)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2024-05-22 17:47:47 +08:00
|
|
|
|
|
|
|
|
|
|
if (!flag) {
|
|
|
|
|
|
return ElMessage({
|
|
|
|
|
|
message: '请选择未试运行的监测点进行试运行',
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
})
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ElMessageBox.confirm('是否确认执行72小时监测点试运行?', '试运行', {
|
|
|
|
|
|
confirmButtonText: '确 认',
|
|
|
|
|
|
cancelButtonText: '取 消'
|
|
|
|
|
|
})
|
2024-06-18 13:36:24 +08:00
|
|
|
|
.then(() => {
|
|
|
|
|
|
runTestSubmit(0)
|
|
|
|
|
|
})
|
2024-05-22 17:47:47 +08:00
|
|
|
|
.catch(() => console.info('操作取消'))
|
2024-05-21 15:42:18 +08:00
|
|
|
|
}
|
2024-05-22 17:47:47 +08:00
|
|
|
|
|
2024-07-02 16:12:42 +08:00
|
|
|
|
// 下载报告
|
|
|
|
|
|
const downloadTheReport = (url: string) => {
|
|
|
|
|
|
getFileNameAndFilePath({ filePath: url }).then((res: any) => {
|
2024-08-08 11:04:59 +08:00
|
|
|
|
console.log(res.data.url, 'res')
|
2024-07-02 16:12:42 +08:00
|
|
|
|
const link = document.createElement('a')
|
|
|
|
|
|
link.href = res.data.url
|
|
|
|
|
|
link.download = res.data.name
|
|
|
|
|
|
document.body.appendChild(link)
|
|
|
|
|
|
link.click()
|
|
|
|
|
|
document.body.removeChild(link)
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-06-18 13:36:24 +08:00
|
|
|
|
const runTestSubmit = (type: number) => {
|
2024-05-22 17:47:47 +08:00
|
|
|
|
const start = new Date()
|
|
|
|
|
|
start.setDate(start.getDate() + 1)
|
|
|
|
|
|
start.setHours(0, 0, 0)
|
|
|
|
|
|
|
|
|
|
|
|
const end = new Date()
|
|
|
|
|
|
end.setDate(end.getDate() + 3)
|
|
|
|
|
|
end.setHours(23, 59, 59)
|
2024-05-24 09:39:54 +08:00
|
|
|
|
const startString = formatDate(start, 'YYYY-MM-DD') // 转换为 YYYY-MM-DD 格式
|
2024-06-18 13:36:24 +08:00
|
|
|
|
const endString = formatDate(end, 'YYYY-MM-DD')
|
2024-05-22 17:47:47 +08:00
|
|
|
|
const data = {
|
|
|
|
|
|
startTime: startString,
|
|
|
|
|
|
endTime: endString,
|
2024-06-05 11:36:24 +08:00
|
|
|
|
lineIds: monitorIds,
|
2024-06-18 13:36:24 +08:00
|
|
|
|
operateType: type
|
2024-05-22 17:47:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
addRunTest(data).then((res: any) => {
|
|
|
|
|
|
if (res.code === 'A0000') {
|
2024-05-22 19:53:25 +08:00
|
|
|
|
ElMessage({
|
2024-05-22 17:47:47 +08:00
|
|
|
|
message: '发起试运行成功',
|
|
|
|
|
|
type: 'success'
|
|
|
|
|
|
})
|
2024-05-22 19:53:25 +08:00
|
|
|
|
tableStore.index()
|
2024-05-22 17:47:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2024-05-21 15:42:18 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
2024-06-18 13:36:24 +08:00
|
|
|
|
<style scoped lang="scss"></style>
|