diff --git a/src/api/shop.ts b/src/api/shop.ts
index 423bd675..8a08a952 100644
--- a/src/api/shop.ts
+++ b/src/api/shop.ts
@@ -1,13 +1,22 @@
import request from '@/utils/request';
class ShopAPI {
- /** 分类查询接口*/
+ /** 分类品牌查询接口*/
static getShop() {
return request({
url: `diyapi/goodsinit`,
method: 'post',
});
}
+ /** 自动查询商品接口*/
+ static getShopLists(data: any) {
+ return request({
+ url: `diyapi/goodsautodata`,
+ method: 'post',
+ data,
+ });
+ }
+
}
export default ShopAPI;
diff --git a/src/assets/images/components/model-shop-list/price.png b/src/assets/images/components/model-shop-list/price.png
index a5adcfad..c162b9a0 100644
Binary files a/src/assets/images/components/model-shop-list/price.png and b/src/assets/images/components/model-shop-list/price.png differ
diff --git a/src/components/common/product-show-config/index.vue b/src/components/common/product-show-config/index.vue
index 6f448c1e..d0c81b2a 100644
--- a/src/components/common/product-show-config/index.vue
+++ b/src/components/common/product-show-config/index.vue
@@ -6,6 +6,9 @@
{{ item.name }}
+
+
+
购物车设置
@@ -16,10 +19,10 @@