diff --git a/anrui-riskcenter-ui/src/views/otherfinancialpolicymanagement/otherfinancialpolicymanagementAdd.vue b/anrui-riskcenter-ui/src/views/otherfinancialpolicymanagement/otherfinancialpolicymanagementAdd.vue index af3d6c6eab..ab3e86d716 100644 --- a/anrui-riskcenter-ui/src/views/otherfinancialpolicymanagement/otherfinancialpolicymanagementAdd.vue +++ b/anrui-riskcenter-ui/src/views/otherfinancialpolicymanagement/otherfinancialpolicymanagementAdd.vue @@ -11,7 +11,7 @@ -
其他融名称:
+
其它融名称:
{{ formobj.bankShortName }} {{ formobj.productTypeValue }} {{ formobj.period !=='' ? formobj.period + '期' : '' }} {{ formobj.maxLoanRatio !== '' ? formobj.maxLoanRatio + '%' : '' }} @@ -19,8 +19,8 @@
-
资方简称
- +
*资方简称
+ @@ -37,23 +37,23 @@
-
业务类型
- +
*业务类型
+
-
车辆大类
- +
*车辆大类
+
-
车辆功能
+
*车辆功能
@@ -63,44 +63,44 @@
-
产品类别
- +
*产品类别
+
-
最高融资比例(%)
- +
*最高融资比例(%)
+
-
最高融资额(元)
- +
*最高融资额(元)
+
-
期数
- +
*期数
+
-
年利率(%)
- +
*年利率(%)
+
-
有效期至
- +
*有效期至
+
@@ -161,7 +161,17 @@ export default { useOrgSid: '', useOrgName: '' }, - rules: {} + rules: { + bankSid: [{ required: true, message: '资方简称不能为空', trigger: 'change' }], + busTypeKey: [{ required: true, message: '业务类型不能为空', trigger: 'change' }], + vehCategoryKey: [{ required: true, message: '车辆大类不能为空', trigger: 'change' }], + productTypeKey: [{ required: true, message: '产品类别不能为空', trigger: 'change' }], + maxLoanRatio: [{ required: true, message: '最高融资比例不能为空', trigger: 'blur' }], + maxLoanAmount: [{ required: true, message: '最高融资额不能为空', trigger: 'blur' }], + periodKey: [{ required: true, message: '期数不能为空', trigger: 'change' }], + yearRatio: [{ required: true, message: '标准年利率不能为空', trigger: 'blur' }], + validDateTo: [{ required: true, message: '有效期不能为空', trigger: 'change' }] + } } }, methods: { @@ -327,6 +337,7 @@ export default { this.formobj.vehTypeValueList = aa } else { this.formobj.vehTypeValueList = [] + this.$message({ showClose: true, type: 'error', message: '车辆功能不能为空' }) } this.submitdisabled = true // 保存 @@ -392,4 +403,7 @@ export default { margin-left: 110px !important; width: calc(100% - 120px); } +/deep/ .el-form-item__error { + margin-left: 110px !important; +} diff --git a/anrui-riskcenter-ui/src/views/otherfinancialpolicymanagement/otherfinancialpolicymanagementInfo.vue b/anrui-riskcenter-ui/src/views/otherfinancialpolicymanagement/otherfinancialpolicymanagementInfo.vue index 0b8a0b0170..0108d55e08 100644 --- a/anrui-riskcenter-ui/src/views/otherfinancialpolicymanagement/otherfinancialpolicymanagementInfo.vue +++ b/anrui-riskcenter-ui/src/views/otherfinancialpolicymanagement/otherfinancialpolicymanagementInfo.vue @@ -10,7 +10,7 @@ -
其他融名称:
+
其它融名称:
{{ formobj.bankShortName }} {{ formobj.productTypeValue }} {{ formobj.period !=='' ? formobj.period + '期' : '' }} {{ formobj.maxLoanRatio !== '' ? formobj.maxLoanRatio + '%' : '' }} diff --git a/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportInfo.vue b/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportInfo.vue index efcd18d588..9338392a87 100644 --- a/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportInfo.vue +++ b/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportInfo.vue @@ -36,7 +36,7 @@
附件
- +
diff --git a/anrui-riskcenter-ui/src/views/workFlow/jinrongzhengceFlow/relation/otherInfo.vue b/anrui-riskcenter-ui/src/views/workFlow/jinrongzhengceFlow/relation/otherInfo.vue index b82d111747..d98f156c1d 100644 --- a/anrui-riskcenter-ui/src/views/workFlow/jinrongzhengceFlow/relation/otherInfo.vue +++ b/anrui-riskcenter-ui/src/views/workFlow/jinrongzhengceFlow/relation/otherInfo.vue @@ -8,18 +8,22 @@
- + + +
其它融名称:
+ + + {{ formobj.bankShortName }} {{ formobj.productTypeValue }} {{ formobj.period !=='' ? formobj.period + '期' : '' }} {{ formobj.maxLoanRatio !== '' ? formobj.maxLoanRatio + '%' : '' }} + + +
+
+
资方简称
{{ formobj.bankShortName }}
- -
其他融名称
- - {{ formobj.bankShortName }} {{ formobj.productTypeValue }} {{ formobj.period !=='' ? formobj.maxLoanRatio + '期' : '' }} {{ formobj.maxLoanRatio }} - -
- +
适用销售部门
{{ formobj.useDeptNames }}
@@ -131,4 +135,17 @@ export default { .addinputInfo { margin-left: 100px !important; } +.tlineheightb { + display: flex; + flex-direction: row; + justify-content: flex-start; + align-items: center; +} +/deep/ .tlineheightb .el-form-item .el-form-item__content .addinputInfo { + line-height: 15px !important; + display: flex; + flex-direction: row; + justify-content: flex-start; + align-items: center; +} diff --git a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue index a7a9b119f3..9dd295df74 100644 --- a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue +++ b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue @@ -38,7 +38,7 @@
附件
- +
diff --git a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue index ae52cda07f..e06b5d2f59 100644 --- a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue +++ b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue @@ -38,7 +38,7 @@
附件
- +
diff --git a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue index c1f608cfa8..f8397d9a00 100644 --- a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue +++ b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue @@ -36,7 +36,7 @@
附件
- +