diff --git a/anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagementAdd.vue b/anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagementAdd.vue
index 2349849687..7241fe0c81 100644
--- a/anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagementAdd.vue
+++ b/anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagementAdd.vue
@@ -171,13 +171,23 @@
+
+ 贴息放款类型
+
+
+
+
+
+
有效期至
-
+
+
+
备注
@@ -248,6 +258,7 @@ export default {
vehCategory_list: [],
vehicleFunction_list: [],
serviceAmountType_list: [],
+ discountUseType_list:[],
guaranteeType_list: [],
downPayRatio_list: [],
bondRatio_list: [],
@@ -273,6 +284,8 @@ export default {
guaranteeTypeKey: '',
guaranteeTypeValue: '',
isOtherProduct: false,
+ discountUseType: '',
+ discountUseTypeKey: '',
isPack: '',
loanFinOtherPolicy: {
maxLoanAmount: '',
@@ -328,6 +341,11 @@ export default {
this.serviceAmountType_list = resp.data
}
})
+ typeValues({ type: 'discountUseType' }).then((resp) => {
+ if (resp.success) {
+ this.discountUseType_list = resp.data
+ }
+ })
typeValues({ type: 'guaranteeType' }).then((resp) => {
if (resp.success) {
this.guaranteeType_list = resp.data
@@ -491,6 +509,14 @@ export default {
this.formobj.serviceAmountTypeValue = ''
}
},
+ discountUseTypeChange(value) {
+ const choose = this.discountUseType_list.filter((item) => item.dictKey === value)
+ if (choose !== null && choose.length > 0) {
+ this.formobj.discountUseType = choose[0].dictValue
+ } else {
+ this.formobj.discountUseType = ''
+ }
+ },
downPayRatioLeastChange(value) {
const choose = this.downPayRatioLeast_list.filter((item) => item.dictKey === value)
if (choose !== null && choose.length > 0) {
@@ -572,6 +598,8 @@ export default {
guaranteeTypeValue: '',
isOtherProduct: false,
isPack: '',
+ discountUseType: '',
+ discountUseTypeKey: '',
loanFinOtherPolicy: {
maxLoanAmount: '',
maxLoanRatio: '',
diff --git a/anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagementInfo.vue b/anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagementInfo.vue
index c0026de56a..361336b7ec 100644
--- a/anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagementInfo.vue
+++ b/anrui-riskcenter-ui/src/views/financialpolicymanagement/financialpolicymanagementInfo.vue
@@ -103,11 +103,17 @@
名义/留购价款
{{ formobj.nominalPrice }}
+
+ 贴息放款类型
+ {{ formobj.discountUseType }}
+
有效期至
{{ formobj.validDateTo }}
-
+
+
+
备注
{{ formobj.remarks }}
@@ -172,6 +178,8 @@ export default {
guaranteeTypeValue: '',
isOtherProduct: false,
isPack: '',
+ discountUseType: '',
+ discountUseTypeKey: '',
loanFinOtherPolicy: {
maxLoanAmount: '',
maxLoanRatio: '',
@@ -232,6 +240,8 @@ export default {
guaranteeTypeValue: '',
isOtherProduct: false,
isPack: '',
+ discountUseType: '',
+ discountUseTypeKey: '',
loanFinOtherPolicy: {
maxLoanAmount: '',
maxLoanRatio: '',