|
|
@@ -110,13 +110,15 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="资金方" align="center" prop="rzScyName" show-overflow-tooltip v-if="uncheckList.rzScyName" />
|
|
|
+ <el-table-column label="授信类型" :formatter="typeFormat" align="center" prop="zfpType" show-overflow-tooltip v-if="uncheckList.zfpType" />
|
|
|
<el-table-column label="融资产品" align="center" prop="zfpName" v-if="uncheckList.zfpName" show-overflow-tooltip/>
|
|
|
<el-table-column label="企业名称" align="center" prop="scyName" v-if="uncheckList.scyName" show-overflow-tooltip/>
|
|
|
<el-table-column label="企业代码" align="center" prop="scySocialCode" v-if="uncheckList.scySocialCode" show-overflow-tooltip/>
|
|
|
<el-table-column label="授信额度" :formatter="moneyFormat" align="center" prop="zfpcrAmount" show-overflow-tooltip v-if="uncheckList.zfpcrAmount" width="120"/>
|
|
|
<el-table-column label="利率(%)" align="center" prop="zfpcrRate" v-if="uncheckList.zfpcrRate" width="120" />
|
|
|
- <el-table-column label="已分割额度" :formatter="moneyFormat" align="center" prop="zfpcrDivisionAmount" v-if="uncheckList.zfpcrDivisionAmount" width="120"/>
|
|
|
+ <!-- <el-table-column label="已分割额度" :formatter="moneyFormat" align="center" prop="zfpcrDivisionAmount" v-if="uncheckList.zfpcrDivisionAmount" width="120"/> -->
|
|
|
<el-table-column label="已使用额度" :formatter="moneyFormat" align="center" prop="zfiAmount" v-if="uncheckList.zfiAmount" width="120"/>
|
|
|
+ <el-table-column label="已分配额度" :formatter="moneyFormat" align="center" prop="supplierAmount" v-if="uncheckList.supplierAmount" width="120"/>
|
|
|
<el-table-column label="可用额度" :formatter="moneyFormat" align="center" prop="usableAmount" v-if="uncheckList.usableAmount && (this.companyType == '00' || this.companyType == '03')" width="120"/>
|
|
|
<el-table-column label="开始日期" align="center" prop="zfpcrStartDate" v-if="uncheckList.zfpcrStartDate" show-overflow-tooltip/>
|
|
|
<el-table-column label="结束日期" align="center" prop="zfpcrEndDate" v-if="uncheckList.zfpcrEndDate" show-overflow-tooltip/>
|
|
|
@@ -263,6 +265,10 @@ export default {
|
|
|
value: "资金方"
|
|
|
},
|
|
|
{
|
|
|
+ label: "zfpType",
|
|
|
+ value: "授信类型"
|
|
|
+ },
|
|
|
+ {
|
|
|
label: "zfpName",
|
|
|
value: "融资产品"
|
|
|
},
|
|
|
@@ -282,16 +288,19 @@ export default {
|
|
|
label: "zfpcrRate",
|
|
|
value: "利率"
|
|
|
},
|
|
|
-
|
|
|
- {
|
|
|
- label: "zfpcrDivisionAmount",
|
|
|
- value: "已分割额度"
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // label: "zfpcrDivisionAmount",
|
|
|
+ // value: "已分割额度"
|
|
|
+ // },
|
|
|
{
|
|
|
label: "zfiAmount",
|
|
|
value: "已使用额度"
|
|
|
},
|
|
|
{
|
|
|
+ label: "supplierAmount",
|
|
|
+ value: "已分配额度"
|
|
|
+ },
|
|
|
+ {
|
|
|
label: "usableAmount",
|
|
|
value: "可用额度"
|
|
|
},
|
|
|
@@ -470,6 +479,9 @@ export default {
|
|
|
statusFormat(row, column) {
|
|
|
return this.selectDictLabel(this.statusOptions, row.zfpcrStatus);
|
|
|
},
|
|
|
+ typeFormat(row, column) {
|
|
|
+ return this.selectDictLabel(this.typeOptions, row.zfpType);
|
|
|
+ },
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
Cookies.set("/creditLine/addCreditLine/", this.$route.fullPath)
|