Browse Source

新发起表单不限制

dev
巴林闲侠 2 years ago
parent
commit
10ecf7a8f2
  1. 14
      web/client/src/sections/workOrder/containers/jobOrder.jsx

14
web/client/src/sections/workOrder/containers/jobOrder.jsx

@ -46,13 +46,13 @@ const JobOrder = (props) => {
}).then(res => {
setFormStateRequestingIndex(false)
if (res) {
if (res.deleted) {
Notification.error({ title: '该表单流程已删除,请尝试退出账号重新登录或联系项企管理员' })
} else if (res.isEdited) {
Notification.error({ title: '该表单流程已修改,请尝试退出账号重新登录或联系项企管理员' })
} else if (!res.isEnable) {
Notification.error({ title: '该表单流程已停用,请尝试退出账号重新登录或联系项企管理员' })
} else
// if (res.deleted) {
// Notification.error({ title: '退' })
// } else if (res.isEdited) {
// Notification.error({ title: '退' })
// } else if (!res.isEnable) {
// Notification.error({ title: '退' })
// } else
if (res.id) {
setLaunchProcessId(res.id)
setWorkflowModalVisible(true)

Loading…
Cancel
Save