Browse Source

查看流程条件修改

xuefy 4 năm trước cách đây
mục cha
commit
732999f880
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      front-vue/src/views/service/credit/credit.vue

+ 4 - 4
front-vue/src/views/service/credit/credit.vue

@@ -2924,8 +2924,8 @@ export default {
       var active = 0
        //融资企业
       if(this.companyType == '02'){
-          //审批中
-          if(row.zfiSupplierStatus == '00'){
+          //审批中||拒绝
+          if(row.zfiSupplierStatus == '00' || row.zfiSupplierStatus == '02'){
               this.hisTaskForm = true;
               approvalProcess(row).then((response) => {
                  this.histaskList = response.data;
@@ -2967,8 +2967,8 @@ export default {
 
           }
       }else if(this.companyType == '01'){//核心企业
-           //审批中
-          if(row.zfiCoreStatus == '00'){
+           //审批中||拒绝
+          if(row.zfiCoreStatus == '00' || row.zfiCoreStatus == '02'){
               this.hisTaskForm = true;
               approvalProcess(row).then((response) => {
                  this.histaskList = response.data;