|
@@ -17,6 +17,18 @@ export default class TerminalTableList extends Component {
|
|
|
},
|
|
|
});
|
|
|
}
|
|
|
+ handleUnBind = (record) => {
|
|
|
+ const { onUnbindItem } = this.props;
|
|
|
+ Modal.confirm({
|
|
|
+ title: `您确定要解绑该终端账号?`,
|
|
|
+ content: '解除绑定后登录将失效,请谨慎操作',
|
|
|
+ okText: '确定',
|
|
|
+ cancelText: '取消',
|
|
|
+ onOk() {
|
|
|
+ onUnbindItem({ id: record.id })
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
render() {
|
|
|
const { onDeleteItem, onEditItem, curStatus, pagination, ...tableProps } = this.props;
|
|
@@ -30,7 +42,7 @@ export default class TerminalTableList extends Component {
|
|
|
title: '终端名称',
|
|
|
dataIndex: 'name',
|
|
|
key: 'name',
|
|
|
- width: '11%',
|
|
|
+ width: '8%',
|
|
|
}, {
|
|
|
title: '校区',
|
|
|
dataIndex: 'campusName',
|
|
@@ -53,7 +65,7 @@ export default class TerminalTableList extends Component {
|
|
|
filters: Object.keys(terminalStatuses).map(key => ({ text: terminalStatuses[key], value: key })),
|
|
|
filterMultiple: false,
|
|
|
filteredValue: [curStatus],
|
|
|
- width: '8%',
|
|
|
+ width: '7%',
|
|
|
}, {
|
|
|
title: '修改时间',
|
|
|
dataIndex: 'gmtModified',
|
|
@@ -61,7 +73,7 @@ export default class TerminalTableList extends Component {
|
|
|
render: text => (
|
|
|
<div>{moment(text).format('YYYY-MM-DD HH:mm:ss')}</div>
|
|
|
),
|
|
|
- width: '17%',
|
|
|
+ width: '16%',
|
|
|
}, {
|
|
|
title: '操作',
|
|
|
dataIndex: 'operation',
|
|
@@ -71,9 +83,11 @@ export default class TerminalTableList extends Component {
|
|
|
<a onClick={() => onEditItem(record)}>编辑</a>
|
|
|
<Divider type="vertical" />
|
|
|
<a onClick={() => this.handleOperateItem(record)}>{record.status === Codes.CODE_NORMAL ? '禁用' : '解禁'}</a>
|
|
|
+ <Divider type="vertical" />
|
|
|
+ <a onClick={() => this.handleUnBind(record)}>解绑</a>
|
|
|
</div>
|
|
|
),
|
|
|
- width: '10%',
|
|
|
+ width: '15%',
|
|
|
}];
|
|
|
|
|
|
columns.map((item) => {
|