Kaynağa Gözat

fix(额度支用):相关还款责任人字段修改

sufan 2 hafta önce
ebeveyn
işleme
21beb69c05

+ 10 - 1
src/views/financingManage/limitExpenditure/components/ResponsiblePerson.vue

@@ -137,11 +137,16 @@ export default {
         {
           label: '还款责任金额',
           prop: 'arlpAmt',
-          width: 140
+          width: 140,
+          show: this.disabled,
+          render: (h, row) => {
+            return <span> { row.arlpAmt }</span>
+          }
         },
         {
           label: '联保标识',
           prop: 'wartySign',
+          show: this.disabled,
           render: (h, row) => {
             const optionDom = [{ label: '单人保证/多人分保', value: 0 }, { label: '联保', value: 1 }].map(item => (<el-option
               key={item.value}
@@ -270,6 +275,10 @@ export default {
         delete item.spouseCardReverseFileStorage
         item.fileStorageIds = item.fileStorages && item.fileStorages.map(item => item.id) || []
         delete item.fileStorages
+        // 斌哥定的 - 因为征信上报的问题 - 所以还款责任金额, 联保标识 都是null
+        item.arlpAmt = null
+        item.wartySign = null
+        item.maxGuarMcc = null
         return item
       })
       const params = {

+ 1 - 0
src/views/financingManage/limitExpenditure/components/ResponsiblePersonDialog.vue

@@ -828,6 +828,7 @@ export default {
                 spouseCardFrontFileStorage: this.$refs.spouseCardFrontFileStorage && this.$refs.spouseCardFrontFileStorage.getFileLists || [],
                 spouseCardReverseFileStorage: this.$refs.spouseCardReverseFileStorage && this.$refs.spouseCardReverseFileStorage.getFileLists || [],
                 fileStorages: this.$refs.fileStorage && this.$refs.fileStorage.getFileLists || []
+
               }
               if (this.ruleForm.arlpIdType === 'idType_1') {
                 if (!params.guaranteeCardFrontFileStorage.length) {