Browse Source

:lipstick: 用户标签配置->复制->增加标签类型显示

zhanghe 6 years ago
parent
commit
2f83eb318c
1 changed files with 9 additions and 4 deletions
  1. 9 4
      src/components/AXTableSelector/columnsMap.js

+ 9 - 4
src/components/AXTableSelector/columnsMap.js

@@ -354,15 +354,20 @@ const clMap = {
       title: '标签名称',
       key: 1,
       dataIndex: 'name',
-      width: '40%',
+      width: '25%',
     }, {
-      title: '所属厂商',
+      title: '标签类型',
       key: 2,
+      dataIndex: 'typeCode',
+      width: '25%',
+    }, {
+      title: '所属厂商',
+      key: 3,
       dataIndex: 'merchantName',
-      width: '20%',
+      width: '25%',
     }, {
       title: '标签状态',
-      key: 3,
+      key: 4,
       dataIndex: 'status',
       render: text => renderStatus(text),
     }],