feat: 主图状态为通过或不通过后,禁止点击审批

pull/11/head
lizijiee 1 year ago
parent 26481b68e8
commit de6505bfb9

@ -269,7 +269,10 @@ function immersionHandler() {
}
function showAction() {
const item = taskDetailInfo.value;
const item = taskDetailInfo.value;
if (item.states === 2 || item.states === 3) {
return
}
if (batch.value === false) overTask.value = item;
}

Loading…
Cancel
Save