소스 검색

项目授信修改

zhangxiaojun 5 달 전
부모
커밋
0ee75f9611
2개의 변경된 파일18개의 추가작업 그리고 2개의 파일을 삭제
  1. 9 1
      src/views/creditManage/coreEnterprise/indexTable.js
  2. 9 1
      src/views/creditManage/projectCredit/indexTable.js

+ 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'