Sfoglia il codice sorgente

:art: 修改登录设备记录表

zhanghe 6 anni fa
parent
commit
d9620aed20
1 ha cambiato i file con 10 aggiunte e 15 eliminazioni
  1. 10 15
      src/routes/Terminal/User/TerminalEdit.js

+ 10 - 15
src/routes/Terminal/User/TerminalEdit.js

@@ -170,32 +170,27 @@ export default class TerminalEditPage extends PureComponent {
       width: '75%',
     }];
     const deviceColumns = [{
-      title: '设备名称',
-      dataIndex: 'deviceName',
-      render: text => (text || '-'),
-      width: '20%',
-      align: 'center',
-    }, {
       title: '设备型号',
       dataIndex: 'deviceModel',
-      width: '20%',
+      width: '25%',
+      align: 'center',
+    }, {
+      title: '系统型号',
+      dataIndex: 'deviceName',
+      render: text => (text || '-'),
+      width: '25%',
       align: 'center',
     }, {
       title: '设备类型',
       dataIndex: 'deviceType',
       render: text => deviceType[text] || '未知',
-      width: '20%',
-      align: 'center',
-    }, {
-      title: '登录次数',
-      dataIndex: 'num',
-      width: '20%',
+      width: '25%',
       align: 'center',
     }, {
-      title: '登录时间',
+      title: '最后登录时间',
       dataIndex: 'gmtCreated',
       render: text => moment(text).format('YYYY-MM-DD HH:mm:ss'),
-      width: '20%',
+      width: '25%',
       align: 'center',
     }];