|
@@ -83,9 +83,10 @@ export default {
|
|
|
// 表头
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
|
|
|
- { title: '创建时间', dataIndex: 'createDate', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '用户名称', dataIndex: 'name', width: '25%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '手机号码', dataIndex: 'phone', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '创建时间', dataIndex: 'createDate', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '用户名称', dataIndex: 'name', width: '17%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '用户账户', dataIndex: 'loginName', width: '17%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '手机号码', dataIndex: 'phone', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '角色', width: '15%', align: 'center', dataIndex: 'roleNames', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '状态', width: '10%', align: 'center', scopedSlots: { customRender: 'status' } },
|
|
|
{ title: '操作', width: '15%', align: 'left', scopedSlots: { customRender: 'action' } }
|