style(table): 移除表格列的省略号配置并调整样式
- 移除了门店经理、所在省份、所在城市、所在辖区、门店地址列的ellipsis配置 - 调整排序号列的对齐方式为居中,宽度从120调整为90 - 移除了创建时间列的ellipsis配置 - 在开发环境配置中注释掉VITE_API_URL设置
This commit is contained in:
@@ -122,32 +122,27 @@
|
||||
{
|
||||
title: '门店经理',
|
||||
dataIndex: 'managerName',
|
||||
key: 'managerName',
|
||||
ellipsis: true
|
||||
key: 'managerName'
|
||||
},
|
||||
{
|
||||
title: '所在省份',
|
||||
dataIndex: 'province',
|
||||
key: 'province',
|
||||
ellipsis: true
|
||||
key: 'province'
|
||||
},
|
||||
{
|
||||
title: '所在城市',
|
||||
dataIndex: 'city',
|
||||
key: 'city',
|
||||
ellipsis: true
|
||||
key: 'city'
|
||||
},
|
||||
{
|
||||
title: '所在辖区',
|
||||
dataIndex: 'region',
|
||||
key: 'region',
|
||||
ellipsis: true
|
||||
key: 'region'
|
||||
},
|
||||
{
|
||||
title: '门店地址',
|
||||
dataIndex: 'address',
|
||||
key: 'address',
|
||||
ellipsis: true
|
||||
key: 'address'
|
||||
},
|
||||
// {
|
||||
// title: '经度',
|
||||
@@ -171,7 +166,8 @@
|
||||
title: '排序号',
|
||||
dataIndex: 'sortNumber',
|
||||
key: 'sortNumber',
|
||||
width: 120
|
||||
align: 'center',
|
||||
width: 90
|
||||
},
|
||||
{
|
||||
title: '创建时间',
|
||||
@@ -180,7 +176,6 @@
|
||||
width: 200,
|
||||
align: 'center',
|
||||
sorter: true,
|
||||
ellipsis: true,
|
||||
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user