fix: 只有审批通过的提交才需要判断修改的是否成员信息
Showing
1 changed file
with
1 additions
and
2 deletions
| ... | @@ -407,8 +407,7 @@ const submit = () => { | ... | @@ -407,8 +407,7 @@ const submit = () => { |
| 407 | if (route.query.guid) { | 407 | if (route.query.guid) { |
| 408 | params.guid = route.query.guid; | 408 | params.guid = route.query.guid; |
| 409 | /** 需要判断是审批通过之后的编辑,若是只改成员信息,则不需要提交审批,只需要调用编辑即可。 */ | 409 | /** 需要判断是审批通过之后的编辑,若是只改成员信息,则不需要提交审批,只需要调用编辑即可。 */ |
| 410 | const hasModified = checkIfModified(formInline, params.policyRQVOS); | 410 | if (detailInfo.value.bizApproveState != 'Y' || checkIfModified(formInline, params.policyRQVOS)) { |
| 411 | if (hasModified) { //修改过基础信息 | ||
| 412 | updateLogicSpace(params).then((res: any) => { | 411 | updateLogicSpace(params).then((res: any) => { |
| 413 | fullscreenLoading.value = false; | 412 | fullscreenLoading.value = false; |
| 414 | if (res?.code == proxy.$passCode) { | 413 | if (res?.code == proxy.$passCode) { | ... | ... |
-
Please register or sign in to post a comment