增加店铺列表页面,增加vue-amap,修改登录相关接口类型
This commit is contained in:
19
src/data/shop.ts
Normal file
19
src/data/shop.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user