Commit ea5e0099 authored by Zhang Xiaojie's avatar Zhang Xiaojie

贷款产品modifyjie请求函数入参名改变

parent 12eedc4b
......@@ -45,7 +45,7 @@ export default class LoanProductService {
features: string
guarantee_type: eGuaranteeType
inst_name: string
product_type: eProductType
loan_type: eProductType
max_amount: number
max_date: number
product_name: string
......
......@@ -13,7 +13,7 @@ export interface iListItem {
min_date: number,
product_name: string,
product_status: number,
product_type: number,
loan_type: number,
products: string,
rate_lower: number,
rate_upper: number,
......
......@@ -71,9 +71,10 @@
</a-form-model-item>
<a-form-model-item label="产品分类" style="width: 100%">
<a-select
:default-value="eProductType.company"
:default-value="form.type"
style="width: 120px; margin-right: 10px"
@change="changeProductType"
v-model="form.type"
>
<a-select-option :value="eProductType.company">
企业
......@@ -141,7 +142,7 @@ export default Vue.extend({
this.form.limitMin = record.min_amount;
this.form.limitMax = record.max_amount;
this.form.guarantee = record.guarantee_type;
this.form.type = record.product_type;
this.form.type = record.loan_type;
this.form.introduction = record.products;
this.form.characteristic = record.features;
this.form.target = record.apply_to;
......@@ -242,7 +243,7 @@ export default Vue.extend({
max_date: this.form.endTime,
product_name: this.form.name,
products: this.form.introduction,
product_type: this.form.type,
loan_type: this.form.type,
rate_lower: this.form.interstMin,
rate_upper: this.form.interstMax,
submit_cond: this.form.submissionCon,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment