|
@@ -42,7 +42,10 @@
|
|
|
<el-form-item class="zap-flex-1" v-if="this.zfiCreateType != 0" label="授信额度" prop="zfpName">
|
|
<el-form-item class="zap-flex-1" v-if="this.zfiCreateType != 0" label="授信额度" prop="zfpName">
|
|
|
<el-input class="zap-form-input" v-model="form.zfpName" disabled />
|
|
<el-input class="zap-form-input" v-model="form.zfpName" disabled />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <div class="zap-form-search-wrap zap-flex-1">
|
|
|
|
|
|
|
+ <el-form-item class="zap-flex-1" v-if="this.zfiCreateType != 0" label="最小融资金额:" prop="zfpMinimumAmount">
|
|
|
|
|
+ <el-input class="zap-form-input" v-model="form.zfpMinimumAmount" disabled />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ <div class="zap-form-search-wrap zap-flex-1" v-if="this.zfiCreateType == 0">
|
|
|
<span class="label">最小融资金额:</span>
|
|
<span class="label">最小融资金额:</span>
|
|
|
<span class="value">{{zfpMinimumAmount}}</span>
|
|
<span class="value">{{zfpMinimumAmount}}</span>
|
|
|
</div>
|
|
</div>
|
|
@@ -470,6 +473,8 @@ export default {
|
|
|
zfpcrRate: "",
|
|
zfpcrRate: "",
|
|
|
//最小融资金额
|
|
//最小融资金额
|
|
|
zfpMinimumAmount: "",
|
|
zfpMinimumAmount: "",
|
|
|
|
|
+ //最短账期
|
|
|
|
|
+ zfpShortestPeriod: "",
|
|
|
//合同附件
|
|
//合同附件
|
|
|
contractFileList: [],
|
|
contractFileList: [],
|
|
|
//发票附件
|
|
//发票附件
|
|
@@ -559,10 +564,13 @@ export default {
|
|
|
tempForm.openName = response.data.openName;
|
|
tempForm.openName = response.data.openName;
|
|
|
//创建人
|
|
//创建人
|
|
|
tempForm.createName = response.data.createName;
|
|
tempForm.createName = response.data.createName;
|
|
|
|
|
+ //最小融资金额
|
|
|
|
|
+ tempForm.zfpMinimumAmount = response.data.zfpMinimumAmount;
|
|
|
//签发金额大写
|
|
//签发金额大写
|
|
|
this.issuedAmount = this.smallToBig(tempForm.zfiAmount);
|
|
this.issuedAmount = this.smallToBig(tempForm.zfiAmount);
|
|
|
-
|
|
|
|
|
|
|
+ listCreditLine(tempForm);
|
|
|
if (response.data.payList) {
|
|
if (response.data.payList) {
|
|
|
|
|
+ console.log(response,"")
|
|
|
this.ticketList = response.data.payList.records;
|
|
this.ticketList = response.data.payList.records;
|
|
|
this.getReTotal(this.ticketList);
|
|
this.getReTotal(this.ticketList);
|
|
|
//附件
|
|
//附件
|
|
@@ -581,6 +589,7 @@ export default {
|
|
|
this.listCreditLine(tempForm);
|
|
this.listCreditLine(tempForm);
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
PDFData(val) {
|
|
PDFData(val) {
|
|
@@ -603,6 +612,7 @@ export default {
|
|
|
creditParams.zfpcrId = tempForm.zfiCoreQuotaId;
|
|
creditParams.zfpcrId = tempForm.zfiCoreQuotaId;
|
|
|
creditParams.type = "1";
|
|
creditParams.type = "1";
|
|
|
listCreditLine(creditParams).then(response => {
|
|
listCreditLine(creditParams).then(response => {
|
|
|
|
|
+ console.log(response.data,"creditLineList")
|
|
|
this.creditLineList = response.data.map(item => {
|
|
this.creditLineList = response.data.map(item => {
|
|
|
return {
|
|
return {
|
|
|
value: item.zfpcrId,
|
|
value: item.zfpcrId,
|
|
@@ -615,6 +625,7 @@ export default {
|
|
|
zfpcrRate: item.zfpcrRate,
|
|
zfpcrRate: item.zfpcrRate,
|
|
|
zfpAuthType: item.zfpAuthType,
|
|
zfpAuthType: item.zfpAuthType,
|
|
|
remaining: item.remaining,
|
|
remaining: item.remaining,
|
|
|
|
|
+ zfpShortestPeriod: item.zfpShortestPeriod,
|
|
|
zfpMinimumAmount: item.zfpMinimumAmount
|
|
zfpMinimumAmount: item.zfpMinimumAmount
|
|
|
};
|
|
};
|
|
|
});
|
|
});
|
|
@@ -829,6 +840,8 @@ export default {
|
|
|
this.zfpcrRate = "";
|
|
this.zfpcrRate = "";
|
|
|
//有效期类型
|
|
//有效期类型
|
|
|
this.zfpcrDateType = "";
|
|
this.zfpcrDateType = "";
|
|
|
|
|
+ //最短账期
|
|
|
|
|
+ this.zfpShortestPeriod = "";
|
|
|
//最小融资金额
|
|
//最小融资金额
|
|
|
this.zfpMinimumAmount = "";
|
|
this.zfpMinimumAmount = "";
|
|
|
return;
|
|
return;
|
|
@@ -847,6 +860,8 @@ export default {
|
|
|
this.zfpId = obj.zfpId;
|
|
this.zfpId = obj.zfpId;
|
|
|
//利率
|
|
//利率
|
|
|
this.zfpcrRate = obj.zfpcrRate;
|
|
this.zfpcrRate = obj.zfpcrRate;
|
|
|
|
|
+ //最短账期
|
|
|
|
|
+ this.zfpShortestPeriod = obj.zfpShortestPeriod;
|
|
|
//最小融资金额
|
|
//最小融资金额
|
|
|
this.zfpMinimumAmount = obj.zfpMinimumAmount;
|
|
this.zfpMinimumAmount = obj.zfpMinimumAmount;
|
|
|
//长期
|
|
//长期
|
|
@@ -1026,10 +1041,13 @@ export default {
|
|
|
this.form.zfpId = this.zfpId;
|
|
this.form.zfpId = this.zfpId;
|
|
|
//利率
|
|
//利率
|
|
|
this.form.zfiRate = this.zfpcrRate;
|
|
this.form.zfiRate = this.zfpcrRate;
|
|
|
|
|
+ //最短账期
|
|
|
|
|
+ this.form.zfpShortestPeriod = this.zfpShortestPeriod;
|
|
|
//最小融资金额
|
|
//最小融资金额
|
|
|
this.form.zfpMinimumAmount = this.zfpMinimumAmount;
|
|
this.form.zfpMinimumAmount = this.zfpMinimumAmount;
|
|
|
//可用金额
|
|
//可用金额
|
|
|
this.form.availableAmt = this.availableAmt;
|
|
this.form.availableAmt = this.availableAmt;
|
|
|
|
|
+ console.log(this.form,"this.form1")
|
|
|
approveCredit(this.form)
|
|
approveCredit(this.form)
|
|
|
.then(response => {
|
|
.then(response => {
|
|
|
loading.close();
|
|
loading.close();
|
|
@@ -1213,10 +1231,14 @@ export default {
|
|
|
this.form.zfpId = this.zfpId;
|
|
this.form.zfpId = this.zfpId;
|
|
|
//利率
|
|
//利率
|
|
|
this.form.zfiRate = this.zfpcrRate;
|
|
this.form.zfiRate = this.zfpcrRate;
|
|
|
|
|
+ //最短账期
|
|
|
|
|
+ this.form.zfpShortestPeriod = this.zfpShortestPeriod;
|
|
|
//最小融资金额
|
|
//最小融资金额
|
|
|
this.form.zfpMinimumAmount = this.zfpMinimumAmount;
|
|
this.form.zfpMinimumAmount = this.zfpMinimumAmount;
|
|
|
|
|
+
|
|
|
//可用金额
|
|
//可用金额
|
|
|
this.form.availableAmt = this.availableAmt;
|
|
this.form.availableAmt = this.availableAmt;
|
|
|
|
|
+ console.log(this.form,"this.form2")
|
|
|
approveCredit(this.form)
|
|
approveCredit(this.form)
|
|
|
.then(response => {
|
|
.then(response => {
|
|
|
loading.close();
|
|
loading.close();
|