|
|
@@ -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;
|