增加店铺列表页面,增加vue-amap,修改登录相关接口类型

This commit is contained in:
2025-02-12 13:52:52 +08:00
parent a599adc63e
commit 81d6ef44ef
18 changed files with 1399 additions and 62 deletions

19
src/data/shop.ts Normal file
View File

@@ -0,0 +1,19 @@
/** 店铺类型*/
export const $ShopType: ShopType[] = [
{
label: "单店",
value: "only",
},
{
label: "连锁店",
value: "chain",
},
{
label: "加盟店",
value: "join",
},
];
export interface ShopType {
label: string;
value: string;
}