diff --git a/api/product/favorite.js b/api/product/favorite.js
index 33f40e23..b1f669e6 100644
--- a/api/product/favorite.js
+++ b/api/product/favorite.js
@@ -20,3 +20,15 @@ export function deleteFavorite(spuId) {
spuId
});
}
+
+// 获得商品收藏分页
+export function getFavoritePage(data) {
+ return request.get('app-api/product/favorite/page', data);
+}
+
+// 取消多个商品收藏
+export function deleteFavoriteList(spuIds) {
+ return request.delete('app-api/product/favorite/delete-list', {
+ spuIds
+ });
+}
diff --git a/pages/users/user_goods_collection/index.vue b/pages/users/user_goods_collection/index.vue
index ea271a41..8e4fd2fa 100644
--- a/pages/users/user_goods_collection/index.vue
+++ b/pages/users/user_goods_collection/index.vue
@@ -1,7 +1,8 @@
-
+
+
当前共 {{ totals }}件商品
@@ -14,21 +15,21 @@
-
-
+
- {{item.storeName}}
- ¥{{item.price}}
+ {{ item.spuName }}
+ ¥{{ item.price }}
- {{loadTitle}}
+ {{loadTitle}}
-
+
+
+
-
-
-