refactor(shop): 重构店铺相关模型和界面组件

- 将店铺模型中的字段名从 shopName/shopAddress 更改为 name/address
- 移除经纬度拆分字段 lng 和 lat,新增 location、district 和 points 字段
- 更新店铺编辑表单以匹配新的字段命名
- 在店铺列表中为店铺名称添加标签样式
- 修正配送员页面的列标题和数据显示逻辑
- 启用开发环境的 API URL 配置
- 修复双击编辑功能的调用问题
This commit is contained in:
2026-02-01 01:43:10 +08:00
parent 5090dd1d44
commit f1c3bd199c
6 changed files with 67 additions and 34 deletions

View File

@@ -25,7 +25,7 @@
>待审核</a-tag
>
<a-tag v-if="record.applyStatus === 20" color="success"
>转账成功</a-tag
>审核通过</a-tag
>
<a-tag v-if="record.applyStatus === 30" color="error">用户取消</a-tag>
<a-tag v-if="record.applyStatus === 40">已打款</a-tag>
@@ -443,7 +443,7 @@
},
// 行双击事件
onDblclick: () => {
// openEdit(record);
openEdit(record);
}
};
};