修改测试问题
This commit is contained in:
@@ -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: '',
|
||||
|
||||
@@ -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
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user