修改测试问题

This commit is contained in:
zhujiyan
2024-06-05 13:28:21 +08:00
parent 709ddc143b
commit ae5339eff3
19 changed files with 652 additions and 3397 deletions

View File

@@ -6,6 +6,7 @@
:rules='rules'
label-width='auto'
class='form-one'
scroll-to-error
>
<el-form-item label='普测负责单位:'>
<el-input v-model='form.deptName' disabled></el-input>
@@ -95,7 +96,6 @@ const form: any = ref({
planEndTime: '',
planName: '',
substationName: '',
completeTime: '',
completeBy: '',
testReport: '',

View File

@@ -114,7 +114,7 @@ const tableStore = new TableStore({
},
click: row => {
// planTestRef.value.open('查看计划', row)
handleAudit(row.processInstanceId)
handleAudit(row.processInstanceId,row.historyInstanceId)
}
},
{
@@ -203,11 +203,12 @@ const cancelLeave = async (row: any) => {
/** 处理审批按钮 */
const handleAudit = (instanceId: any) => {
const handleAudit = (instanceId: any,historyInstanceId:any) => {
push({
name: 'BpmProcessInstanceDetail',
query: {
id: instanceId
state: {
id: instanceId,
historyInstanceId
}
})
}