Răsfoiți Sursa

Merge branch 'master' of http://8.149.142.40:3000/fjhx2012/jy_erp

lxf 8 luni în urmă
părinte
comite
b4bde3274b
1 a modificat fișierele cu 8 adăugiri și 4 ștergeri
  1. 8 4
      jy-ui/src/views/business/capital/transactions/index.vue

+ 8 - 4
jy-ui/src/views/business/capital/transactions/index.vue

@@ -144,18 +144,21 @@ const columnConfig: ColumnConfigType[] = [
     label: '收入',
     formatter(row) {
       return row.type == 1 ? row.amount : ''
-    }
+    },
+    width: 80
   },
   {
     prop: 'amount',
     label: '支出',
     formatter(row) {
       return row.type == 1 ? '' :row.amount
-    }
+    },
+    width: 80
   },
   {
     prop: 'balance',
-    label: '余额'
+    label: '余额',
+    width: 100
   },
   // {
   //   prop: 'type',
@@ -171,7 +174,8 @@ const columnConfig: ColumnConfigType[] = [
   {
     prop: 'targetType',
     label: '对方类型',
-    dict: 'target_type'
+    dict: 'target_type',
+    width: 90
   },
   {
     prop: 'targetAccountName',