style(table): 移除表格列的省略号配置并调整样式

- 移除了门店经理、所在省份、所在城市、所在辖区、门店地址列的ellipsis配置
- 调整排序号列的对齐方式为居中,宽度从120调整为90
- 移除了创建时间列的ellipsis配置
- 在开发环境配置中注释掉VITE_API_URL设置
This commit is contained in:
2026-02-05 12:01:24 +08:00
parent e015eaef9e
commit ce02c6b12e
2 changed files with 8 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
VITE_APP_NAME=后台管理(开发环境)
VITE_API_URL=http://127.0.0.1:9200/api
#VITE_API_URL=http://127.0.0.1:9200/api
#VITE_SERVER_API_URL=http://127.0.0.1:8000/api

View File

@@ -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')
},
{