refactor(shop): 移除配送员模块并优化门店管理功能
- 删除配送员相关API接口文件及模型定义 - 删除配送员管理页面组件及相关搜索功能 - 在门店模型中新增门店横幅、经纬度字段和状态字段 - 将门店经纬度合并为lngAndLat字段并优化地址选择组件 - 优化门店编辑页面布局和字段验证规则 - 在门店搜索组件中添加关键词搜索功能 - 调整快递公司页面宽度和标签栏显示逻辑 - 清理订单和社区页面中的冗余字段定义
This commit is contained in:
@@ -100,21 +100,27 @@
|
||||
// 完整的列配置(包含所有字段)
|
||||
const columns = ref<ColumnItem[]>([
|
||||
{
|
||||
title: '主键ID',
|
||||
dataIndex: 'id',
|
||||
key: 'id',
|
||||
width: 90,
|
||||
title: '用户ID',
|
||||
dataIndex: 'userId',
|
||||
key: 'userId',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
title: '配送点ID(shop_dealer.id)',
|
||||
title: '所属门店',
|
||||
dataIndex: 'storeId',
|
||||
key: 'storeId',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
title: '用户ID',
|
||||
dataIndex: 'userId',
|
||||
key: 'userId',
|
||||
title: '姓名',
|
||||
dataIndex: 'name',
|
||||
key: 'name',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
title: '手机号',
|
||||
dataIndex: 'phone',
|
||||
key: 'phone',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
@@ -129,12 +135,6 @@
|
||||
key: 'sortNumber',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
title: '是否删除',
|
||||
dataIndex: 'isDelete',
|
||||
key: 'isDelete',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
title: '创建时间',
|
||||
dataIndex: 'createTime',
|
||||
@@ -145,16 +145,6 @@
|
||||
ellipsis: true,
|
||||
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
||||
},
|
||||
{
|
||||
title: '修改时间',
|
||||
dataIndex: 'updateTime',
|
||||
key: 'updateTime',
|
||||
width: 200,
|
||||
align: 'center',
|
||||
sorter: true,
|
||||
ellipsis: true,
|
||||
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
key: 'action',
|
||||
|
||||
Reference in New Issue
Block a user