diff --git a/api/oa/app/model/index.ts b/api/oa/app/model/index.ts index 920449c..901487b 100644 --- a/api/oa/app/model/index.ts +++ b/api/oa/app/model/index.ts @@ -137,6 +137,8 @@ export interface App { showCase?: boolean; showIndex?: boolean; recommend?: boolean; + categoryName?: string; + title?: string; } /** diff --git a/api/shop/goods/model/index.ts b/api/shop/goods/model/index.ts index 100ab74..b3f2ce7 100644 --- a/api/shop/goods/model/index.ts +++ b/api/shop/goods/model/index.ts @@ -36,9 +36,9 @@ export interface Goods { // 货架 position?: string; // 进货价格 - price?: string; + price?: number; // 销售价格 - salePrice?: string; + salePrice?: number; // 库存计算方式(10下单减库存 20付款减库存) deductStockType?: number; // 封面图 diff --git a/components/AppHeader.vue b/components/AppHeader.vue index 989c1e6..c374c0a 100644 --- a/components/AppHeader.vue +++ b/components/AppHeader.vue @@ -42,6 +42,9 @@

{{ item.title }}

+

商家中心

+

开发者中心

+

入驻

@@ -65,7 +68,7 @@