8387bd1d by lihua

fix: 只有审批通过的提交才需要判断修改的是否成员信息

1 parent fad6cc67
...@@ -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) {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!