diff --git a/api/store.js b/api/store.js index d935139..c0beaa5 100644 --- a/api/store.js +++ b/api/store.js @@ -545,4 +545,7 @@ export function priceRuleApi(id) { noAuth: true }); } - +// 酒道馆登录 +export function storeLogin(data) { + return request.get("store/merchant/login", data); +} diff --git a/api/supplier.js b/api/supplier.js index 0393a63..db46fa7 100644 --- a/api/supplier.js +++ b/api/supplier.js @@ -12,6 +12,10 @@ export function supplierApplyRecord(data) { export function supplierApplyInfo(data) { return request.get(`supplier/apply_info`, data); } +// 供应商商品列表 +export function supplierGoodsList(data) { + return request.get(`supplier/goods_list`, data); +} diff --git a/pages.json b/pages.json index 025ff01..732621d 100644 --- a/pages.json +++ b/pages.json @@ -1369,10 +1369,6 @@ "navigationBarTitleText": "佣金明细" } } - - - - ] }, { @@ -1390,7 +1386,16 @@ "style": { "navigationBarTitleText": "申请记录" } + }, + { + "path": "stock/with_goods", + "style": { + "navigationBarTitleText": "立即进货" + } } + + + ] }, { diff --git a/pages/admin/business/index.vue b/pages/admin/business/index.vue index b7efe0d..dfb4455 100644 --- a/pages/admin/business/index.vue +++ b/pages/admin/business/index.vue @@ -1,25 +1,42 @@