bf868d2c by lihua

去掉撤销按钮

1 parent cfc1fdcc
......@@ -187,7 +187,7 @@ const getTableBtns = (row, includeDetail = true) => {
if (flowState === 3) {
btnsArr.push({ label: "重新提交", value: "edit" })
}
isShowCancel && btnsArr.push({ label: "撤销", value: "revoke" })
// isShowCancel && btnsArr.push({ label: "撤销", value: "revoke" })
flowState === 3 && btnsArr.push({ label: "删除", value: "delete" })
}
return btnsArr
......
......@@ -184,9 +184,10 @@ const tableInfo = ref({
if (flowState === 3) { //重新提交过的不能再重新提交 && bizApproveState != 'D'
list.push({ label: "重新提交", value: "redit" }) //已驳回
}
if (isShowCancel) {
list.push({ label: "撤销", value: "revoke" })
}
//跨平台审批,不需要撤销
// if (isShowCancel) {
// list.push({ label: "撤销", value: "revoke" })
// }
if (flowState !== 1) {
list.push({ label: "详情", value: "detail" })
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!