Sfoglia il codice sorgente

项目授信修改

zhangxiaojun 5 mesi fa
parent
commit
0ee75f9611

+ 9 - 1
src/views/creditManage/coreEnterprise/indexTable.js

@@ -124,9 +124,17 @@ export default {
         },
         {
           label: '未通过原因',
-          prop: 'errorString',
+          prop: 'errorsString',
           showTooltip: true
         },
+        {
+          label: '是否流程授信',
+          prop: 'process',
+          showTooltip: true,
+          render: (h, row) => {
+            return <span>{ row.process ? '是' : '否' }</span>
+          }
+        },
         {
           label: '最近提交时间',
           prop: 'gmtModified'

+ 9 - 1
src/views/creditManage/projectCredit/indexTable.js

@@ -113,9 +113,17 @@ export default {
         },
         {
           label: '未通过原因',
-          prop: 'errorString',
+          prop: 'errorsString',
           showTooltip: true
         },
+        {
+          label: '是否流程授信',
+          prop: 'process',
+          showTooltip: true,
+          render: (h, row) => {
+            return <span>{ row.process ? '是' : '否' }</span>
+          }
+        },
         {
           label: '最近提交时间',
           prop: 'gmtModified'