|
|
@@ -749,28 +749,29 @@
|
|
|
"
|
|
|
|
|
|
>修改</el-button>
|
|
|
- <!--融信状态待确权
|
|
|
+ <!--融信状态待确权且为核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleApprove(scope.row)"
|
|
|
- v-show="scope.row.zfiStatus == '00'"
|
|
|
+ v-show="scope.row.zfiStatus == '00' && scope.row.companyType == '01'"
|
|
|
v-hasPermi="['credit:credit:approve']"
|
|
|
>确权</el-button>
|
|
|
<!--原补充资料-->
|
|
|
- <!--核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过)-->
|
|
|
+ <!--核心开立+融信状态为待签收+融资企业 判断内部,平台,审批中不可进入
|
|
|
+ -->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleAddInformation(scope.row)"
|
|
|
v-hasPermi="['credit:credit:addInfor']"
|
|
|
- v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' &&((scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01') || (scope.row.zfiPlatformStatus != '00' && scope.row.zfiPlatformStatus != '01'))"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus=='01' || scope.row.zfiStatus=='06')"
|
|
|
>签收</el-button>
|
|
|
- <!--融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过
|
|
|
-
|
|
|
+ <!--融资申请+融信状态待签收+融资企业
|
|
|
+ 判断是否内部通过 审批中不可进入
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
@@ -778,7 +779,7 @@
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleSignFor(scope.row)"
|
|
|
v-hasPermi="['credit:credit:signFor']"
|
|
|
- v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' &&(scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01')"
|
|
|
+ v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && scope.row.companyType == '02'"
|
|
|
>签收</el-button>
|
|
|
<!--(融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过)||
|
|
|
(核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过))
|
|
|
@@ -817,14 +818,31 @@
|
|
|
(scope.row.companyType == '02' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiPlatformStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null') && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
|
|
|
(scope.row.companyType == '01' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')"
|
|
|
>盖章</el-button> -->
|
|
|
- <!--
|
|
|
- (核心方)核心开立+核心审批拒绝||融资/平台拒绝||
|
|
|
- (融资方)融资申请+融资审批状态/平台审批拒绝+融信不等于待签收||
|
|
|
- (融资方)融资开立+融资审批状态/平台审批拒绝||
|
|
|
+ <!--核心开立
|
|
|
+ 类型为核心开立,状态为空,并且核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '01' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >开立融信</el-button>
|
|
|
+ <!--供应商开立
|
|
|
+ 类型为供应商开立,状态为空,并且融资企业
|
|
|
+ -->
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >融信开立</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['credit:credit:del']"
|
|
|
@@ -898,39 +916,41 @@
|
|
|
"
|
|
|
|
|
|
>修改</el-button>
|
|
|
- <!--融信状态待确权
|
|
|
+ <!--融信状态待确权且为核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleApprove(scope.row)"
|
|
|
- v-show="scope.row.zfiStatus == '00'"
|
|
|
+ v-show="scope.row.zfiStatus == '00' && scope.row.companyType == '01'"
|
|
|
v-hasPermi="['credit:credit:approve']"
|
|
|
>确权</el-button>
|
|
|
<!--原补充资料-->
|
|
|
- <!--核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过)-->
|
|
|
+ <!--核心开立+融信状态为待签收+融资企业 判断内部,平台,审批中不可进入-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleAddInformation(scope.row)"
|
|
|
v-hasPermi="['credit:credit:addInfor']"
|
|
|
- v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' &&((scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01') || (scope.row.zfiPlatformStatus != '00' && scope.row.zfiPlatformStatus != '01'))"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus=='01' || scope.row.zfiStatus=='06')"
|
|
|
>签收</el-button>
|
|
|
- <!--融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过-->
|
|
|
+ <!--融资申请+融信状态待签收+融资企业
|
|
|
+ 判断是否内部通过 审批中不可进入
|
|
|
+ -->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleSignFor(scope.row)"
|
|
|
v-hasPermi="['credit:credit:signFor']"
|
|
|
- v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' &&(scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01')"
|
|
|
+ v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && scope.row.companyType == '02'"
|
|
|
>签收</el-button>
|
|
|
<!--(融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过)||
|
|
|
(核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过))
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -953,7 +973,7 @@
|
|
|
(融资方)融资开立:融资方通过+平台通过+其他为空||
|
|
|
(核心)确权:融资方通过+核心通过+平台通过+待确权
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -964,14 +984,31 @@
|
|
|
(scope.row.companyType == '02' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiPlatformStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null') && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
|
|
|
(scope.row.companyType == '01' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')"
|
|
|
>盖章</el-button> -->
|
|
|
- <!--
|
|
|
- (核心方)核心开立+核心审批拒绝||融资/平台拒绝||
|
|
|
- (融资方)融资申请+融资审批状态/平台审批拒绝+融信不等于待签收||
|
|
|
- (融资方)融资开立+融资审批状态/平台审批拒绝||
|
|
|
+ <!--核心开立
|
|
|
+ 类型为核心开立,状态为空,并且核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '01' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >开立融信</el-button>
|
|
|
+ <!--供应商开立
|
|
|
+ 类型为供应商开立,状态为空,并且融资企业
|
|
|
+ -->
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >融信开立</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['credit:credit:del']"
|
|
|
@@ -1045,39 +1082,41 @@
|
|
|
"
|
|
|
|
|
|
>修改</el-button>
|
|
|
- <!--融信状态待确权
|
|
|
+ <!--融信状态待确权且为核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleApprove(scope.row)"
|
|
|
- v-show="scope.row.zfiStatus == '00'"
|
|
|
+ v-show="scope.row.zfiStatus == '00' && scope.row.companyType == '01'"
|
|
|
v-hasPermi="['credit:credit:approve']"
|
|
|
>确权</el-button>
|
|
|
<!--原补充资料-->
|
|
|
- <!--核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过)-->
|
|
|
+ <!--核心开立+融信状态为待签收+融资企业 判断内部,平台,审批中不可进入-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleAddInformation(scope.row)"
|
|
|
v-hasPermi="['credit:credit:addInfor']"
|
|
|
- v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' &&((scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01') || (scope.row.zfiPlatformStatus != '00' && scope.row.zfiPlatformStatus != '01'))"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus=='01' || scope.row.zfiStatus=='06')"
|
|
|
>签收</el-button>
|
|
|
- <!--融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过-->
|
|
|
+ <!--融资申请+融信状态待签收+融资企业
|
|
|
+ 判断是否内部通过 审批中不可进入
|
|
|
+ -->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleSignFor(scope.row)"
|
|
|
v-hasPermi="['credit:credit:signFor']"
|
|
|
- v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' &&(scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01')"
|
|
|
+ v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && scope.row.companyType == '02'"
|
|
|
>签收</el-button>
|
|
|
<!--(融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过)||
|
|
|
(核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过))
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -1100,7 +1139,7 @@
|
|
|
(融资方)融资开立:融资方通过+平台通过+其他为空||
|
|
|
(核心)确权:融资方通过+核心通过+平台通过+待确权
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -1111,14 +1150,31 @@
|
|
|
(scope.row.companyType == '02' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiPlatformStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null') && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
|
|
|
(scope.row.companyType == '01' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')"
|
|
|
>盖章</el-button> -->
|
|
|
- <!--
|
|
|
- (核心方)核心开立+核心审批拒绝||融资/平台拒绝||
|
|
|
- (融资方)融资申请+融资审批状态/平台审批拒绝+融信不等于待签收||
|
|
|
- (融资方)融资开立+融资审批状态/平台审批拒绝||
|
|
|
+ <!--核心开立
|
|
|
+ 类型为核心开立,状态为空,并且核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '01' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >开立融信</el-button>
|
|
|
+ <!--供应商开立
|
|
|
+ 类型为供应商开立,状态为空,并且融资企业
|
|
|
+ -->
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >融信开立</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['credit:credit:del']"
|
|
|
@@ -1192,39 +1248,41 @@
|
|
|
"
|
|
|
|
|
|
>修改</el-button>
|
|
|
- <!--融信状态待确权
|
|
|
+ <!--融信状态待确权且为核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleApprove(scope.row)"
|
|
|
- v-show="scope.row.zfiStatus == '00'"
|
|
|
+ v-show="scope.row.zfiStatus == '00' && scope.row.companyType == '01'"
|
|
|
v-hasPermi="['credit:credit:approve']"
|
|
|
>确权</el-button>
|
|
|
<!--原补充资料-->
|
|
|
- <!--核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过)-->
|
|
|
+ <!--核心开立+融信状态为待签收+融资企业 判断内部,平台,审批中不可进入-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleAddInformation(scope.row)"
|
|
|
v-hasPermi="['credit:credit:addInfor']"
|
|
|
- v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' &&((scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01') || (scope.row.zfiPlatformStatus != '00' && scope.row.zfiPlatformStatus != '01'))"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus=='01' || scope.row.zfiStatus=='06')"
|
|
|
>签收</el-button>
|
|
|
- <!--融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过-->
|
|
|
+ <!--融资申请+融信状态待签收+融资企业
|
|
|
+ 判断是否内部通过 审批中不可进入
|
|
|
+ -->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleSignFor(scope.row)"
|
|
|
v-hasPermi="['credit:credit:signFor']"
|
|
|
- v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' &&(scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01')"
|
|
|
+ v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && scope.row.companyType == '02'"
|
|
|
>签收</el-button>
|
|
|
<!--(融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过)||
|
|
|
(核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过))
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -1247,7 +1305,7 @@
|
|
|
(融资方)融资开立:融资方通过+平台通过+其他为空||
|
|
|
(核心)确权:融资方通过+核心通过+平台通过+待确权
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -1258,6 +1316,28 @@
|
|
|
(scope.row.companyType == '02' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiPlatformStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null') && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
|
|
|
(scope.row.companyType == '01' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')"
|
|
|
>盖章</el-button> -->
|
|
|
+ <!--核心开立
|
|
|
+ 类型为核心开立,状态为空,并且核心企业
|
|
|
+ -->
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '01' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >开立融信</el-button>
|
|
|
+ <!--供应商开立
|
|
|
+ 类型为供应商开立,状态为空,并且融资企业
|
|
|
+ -->
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >融信开立</el-button>
|
|
|
<!--
|
|
|
(核心方)核心开立+核心审批拒绝||融资/平台拒绝||
|
|
|
(融资方)融资申请+融资审批状态/平台审批拒绝+融信不等于待签收||
|
|
|
@@ -1339,39 +1419,41 @@
|
|
|
"
|
|
|
|
|
|
>修改</el-button>
|
|
|
- <!--融信状态待确权
|
|
|
+ <!--融信状态待确权且为核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleApprove(scope.row)"
|
|
|
- v-show="scope.row.zfiStatus == '00'"
|
|
|
+ v-show="scope.row.zfiStatus == '00' && scope.row.companyType == '01'"
|
|
|
v-hasPermi="['credit:credit:approve']"
|
|
|
>确权</el-button>
|
|
|
<!--原补充资料-->
|
|
|
- <!--核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过)-->
|
|
|
+ <!--核心开立+融信状态为待签收+融资企业 判断内部,平台,审批中不可进入-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleAddInformation(scope.row)"
|
|
|
v-hasPermi="['credit:credit:addInfor']"
|
|
|
- v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' &&((scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01') || (scope.row.zfiPlatformStatus != '00' && scope.row.zfiPlatformStatus != '01'))"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus=='01' || scope.row.zfiStatus=='06')"
|
|
|
>签收</el-button>
|
|
|
- <!--融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过-->
|
|
|
+ <!--融资申请+融信状态待签收+融资企业
|
|
|
+ 判断是否内部通过 审批中不可进入
|
|
|
+ -->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleSignFor(scope.row)"
|
|
|
v-hasPermi="['credit:credit:signFor']"
|
|
|
- v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' &&(scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01')"
|
|
|
+ v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && scope.row.companyType == '02'"
|
|
|
>签收</el-button>
|
|
|
<!--(融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过)||
|
|
|
(核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过))
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -1394,7 +1476,7 @@
|
|
|
(融资方)融资开立:融资方通过+平台通过+其他为空||
|
|
|
(核心)确权:融资方通过+核心通过+平台通过+待确权
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -1405,14 +1487,31 @@
|
|
|
(scope.row.companyType == '02' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiPlatformStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null') && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
|
|
|
(scope.row.companyType == '01' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')"
|
|
|
>盖章</el-button> -->
|
|
|
- <!--
|
|
|
- (核心方)核心开立+核心审批拒绝||融资/平台拒绝||
|
|
|
- (融资方)融资申请+融资审批状态/平台审批拒绝+融信不等于待签收||
|
|
|
- (融资方)融资开立+融资审批状态/平台审批拒绝||
|
|
|
+ <!--核心开立
|
|
|
+ 类型为核心开立,状态为空,并且核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '01' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >开立融信</el-button>
|
|
|
+ <!--供应商开立
|
|
|
+ 类型为供应商开立,状态为空,并且融资企业
|
|
|
+ -->
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >融信开立</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['credit:credit:del']"
|
|
|
@@ -1486,39 +1585,41 @@
|
|
|
"
|
|
|
|
|
|
>修改</el-button>
|
|
|
- <!--融信状态待确权
|
|
|
+ <!--融信状态待确权且为核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleApprove(scope.row)"
|
|
|
- v-show="scope.row.zfiStatus == '00'"
|
|
|
+ v-show="scope.row.zfiStatus == '00' && scope.row.companyType == '01'"
|
|
|
v-hasPermi="['credit:credit:approve']"
|
|
|
>确权</el-button>
|
|
|
<!--原补充资料-->
|
|
|
- <!--核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过)-->
|
|
|
+ <!--核心开立+融信状态为待签收+融资企业 判断内部,平台,审批中不可进入-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleAddInformation(scope.row)"
|
|
|
v-hasPermi="['credit:credit:addInfor']"
|
|
|
- v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && scope.row.zfiStatus=='01' &&((scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01') || (scope.row.zfiPlatformStatus != '00' && scope.row.zfiPlatformStatus != '01'))"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus=='01' || scope.row.zfiStatus=='06')"
|
|
|
>签收</el-button>
|
|
|
- <!--融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过-->
|
|
|
+ <!--融资申请+融信状态待签收+融资企业
|
|
|
+ 判断是否内部通过 审批中不可进入
|
|
|
+ -->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleSignFor(scope.row)"
|
|
|
v-hasPermi="['credit:credit:signFor']"
|
|
|
- v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' &&(scope.row.zfiSupplierStatus != '00' && scope.row.zfiSupplierStatus != '01')"
|
|
|
+ v-show="scope.row.zfiCreateType == '0' && scope.row.zfiStatus=='01' && scope.row.companyType == '02'"
|
|
|
>签收</el-button>
|
|
|
<!--(融资申请+融信状态待签收+融资审批状态不是审批中并且不是审批通过)||
|
|
|
(核心开立+融信状态为待签收+(融资审批状态不是审批中并且不是审批通过)或者(平台审批状态不是审批中并且不是审批通过))
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -1541,7 +1642,7 @@
|
|
|
(融资方)融资开立:融资方通过+平台通过+其他为空||
|
|
|
(核心)确权:融资方通过+核心通过+平台通过+待确权
|
|
|
-->
|
|
|
- <!-- <el-button
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@@ -1552,14 +1653,31 @@
|
|
|
(scope.row.companyType == '02' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiPlatformStatus == '01' && (scope.row.zfiCoreStatus == '' || scope.row.zfiCoreStatus == null || scope.row.zfiCoreStatus =='null') && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null))||
|
|
|
(scope.row.companyType == '01' && scope.row.zfiSupplierStatus == '01' && scope.row.zfiCoreStatus == '01' && scope.row.zfiPlatformStatus == '01' && scope.row.zfiStatus == '00')"
|
|
|
>盖章</el-button> -->
|
|
|
- <!--
|
|
|
- (核心方)核心开立+核心审批拒绝||融资/平台拒绝||
|
|
|
- (融资方)融资申请+融资审批状态/平台审批拒绝+融信不等于待签收||
|
|
|
- (融资方)融资开立+融资审批状态/平台审批拒绝||
|
|
|
+ <!--核心开立
|
|
|
+ 类型为核心开立,状态为空,并且核心企业
|
|
|
-->
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '01' && scope.row.zfiCreateType == '1' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >开立融信</el-button>
|
|
|
+ <!--供应商开立
|
|
|
+ 类型为供应商开立,状态为空,并且融资企业
|
|
|
+ -->
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="seal(scope.row)"
|
|
|
+ v-hasPermi="['credit:credit:seal']"
|
|
|
+ v-show="scope.row.companyType == '02' && scope.row.zfiCreateType == '2' && (scope.row.zfiStatus == '' || scope.row.zfiStatus == 'null' || scope.row.zfiStatus == null)"
|
|
|
+ >融信开立</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['credit:credit:del']"
|
|
|
@@ -2028,20 +2146,77 @@ export default {
|
|
|
|
|
|
|
|
|
},
|
|
|
- //审核
|
|
|
+ //确权审核
|
|
|
handleApprove(row){
|
|
|
- const zfiId = row.zfiId || this.ids
|
|
|
- Cookies.set("/credit/confirmationAudit/"+zfiId + "/", this.$route.fullPath)
|
|
|
- this.$router.push({ path: "/credit/confirmationAudit/"+zfiId + "/" });
|
|
|
+ //判断审批是否审批中
|
|
|
+ if(row.zfiCoreStatus == "00"){
|
|
|
+ this.$message({
|
|
|
+ message: "请内部审批通过后,再确权",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ //查询当前用户是否为经办人
|
|
|
+ listCompanyHandler().then((response) => {
|
|
|
+ if(false == response.data){
|
|
|
+ this.$message({
|
|
|
+ message: "此操作需经办人权限,请确认您是否是经办人",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }else{
|
|
|
+ const zfiId = row.zfiId || this.ids
|
|
|
+ Cookies.set("/credit/confirmationAudit/"+zfiId + "/", this.$route.fullPath)
|
|
|
+ this.$router.push({ path: "/credit/confirmationAudit/"+zfiId + "/" });
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
},
|
|
|
//补充资料
|
|
|
handleAddInformation(row){
|
|
|
- const zfiId = row.zfiId || this.ids
|
|
|
- Cookies.set("/credit/addInformation/"+zfiId + "/", this.$route.fullPath)
|
|
|
- this.$router.push({ path: "/credit/addInformation/"+zfiId + "/" });
|
|
|
+ //判断审批是否审批中
|
|
|
+ if(row.zfiSupplierStatus == "00"){
|
|
|
+ this.$message({
|
|
|
+ message: "请内部审批通过后,再签收",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if(row.zfiPlatformStatus == '00'){
|
|
|
+ this.$message({
|
|
|
+ message: "平台正在审核资料,平台审核时间为工作日:9:00—18:00;单日16:00之前提交资料,预计2小时内完成,请平台审批通过后,再次签署",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ //查询当前用户是否为经办人
|
|
|
+ listCompanyHandler().then((response) => {
|
|
|
+ if(false == response.data){
|
|
|
+ this.$message({
|
|
|
+ message: "此操作需经办人权限,请确认您是否是经办人",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }else{
|
|
|
+ const zfiId = row.zfiId || this.ids
|
|
|
+ Cookies.set("/credit/addInformation/"+zfiId + "/", this.$route.fullPath)
|
|
|
+ this.$router.push({ path: "/credit/addInformation/"+zfiId + "/" });
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
},
|
|
|
//签收
|
|
|
handleSignFor(row){
|
|
|
+ //判断审批是否审批中
|
|
|
+ if(row.zfiSupplierStatus == "00"){
|
|
|
+ this.$message({
|
|
|
+ message: "请内部审批通过后,再签收",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
//查询当前用户是否为经办人
|
|
|
listCompanyHandler().then((response) => {
|
|
|
if(false == response.data){
|
|
|
@@ -2066,6 +2241,31 @@ export default {
|
|
|
},
|
|
|
//盖章
|
|
|
seal(row){
|
|
|
+
|
|
|
+ //获取融信类型
|
|
|
+ if(row.zfiCreateType == '1'){//核心开立
|
|
|
+ if(row.zfiCoreStatus != "01"){
|
|
|
+ this.$message({
|
|
|
+ message: "请内部审批通过后,再签收",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }else if(row.zfiCreateType == '2'){//供应商开立
|
|
|
+ if(row.zfiSupplierStatus != "01"){
|
|
|
+ this.$message({
|
|
|
+ message: "请内部审批通过后,再签收",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }else if(row.zfiPlatformStatus != "01"){
|
|
|
+ this.$message({
|
|
|
+ message: "融信资料已提交平台审核,平台审核时间为工作日:9:00—18:00;单日16:00之前提交资料,预计2小时内完成,请留意站内信息",
|
|
|
+ type: 'warning'
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
//查询当前用户是否为经办人
|
|
|
listCompanyHandler().then((response) => {
|
|
|
if(false == response.data){
|