123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const sheep_index = require("../../sheep/index.js");
- const sheep_api_product_favorite = require("../../sheep/api/product/favorite.js");
- const sheep_util_index = require("../../sheep/util/index.js");
- require("../../sheep/api/index.js");
- require("../../sheep/api/distri/score.js");
- require("../../sheep/request/index.js");
- require("../../sheep/config/index.js");
- require("../../sheep/store/index.js");
- require("../../sheep/store/app.js");
- require("../../sheep/api/promotion/diy.js");
- require("../../sheep/platform/index.js");
- require("../../sheep/platform/provider/wechat/index.js");
- require("../../sheep/platform/provider/wechat/miniProgram.js");
- require("../../sheep/api/member/auth.js");
- require("../../sheep/api/member/social.js");
- require("../../sheep/api/member/user.js");
- require("../../sheep/platform/provider/apple/index.js");
- require("../../sheep/platform/share.js");
- require("../../sheep/router/index.js");
- require("../../sheep/hooks/useModal.js");
- require("../../sheep/helper/index.js");
- require("../../sheep/helper/test.js");
- require("../../sheep/helper/digit.js");
- require("../../sheep/api/member/signin.js");
- require("../../sheep/helper/throttle.js");
- require("../../sheep/url/index.js");
- require("../../sheep/platform/pay.js");
- require("../../sheep/api/pay/order.js");
- require("../../sheep/store/user.js");
- require("../../sheep/store/cart.js");
- require("../../sheep/api/trade/cart.js");
- require("../../sheep/api/pay/wallet.js");
- require("../../sheep/api/trade/order.js");
- require("../../sheep/api/promotion/coupon.js");
- require("../../sheep/store/sys.js");
- require("../../sheep/store/modal.js");
- require("../../sheep/api/distri/share.js");
- require("../../sheep/api/distri/team.js");
- require("../../sheep/api/infra/file.js");
- require("../../sheep/api/member/address.js");
- require("../../sheep/api/member/point.js");
- require("../../sheep/api/migration/app.js");
- require("../../sheep/api/migration/chat.js");
- require("../../sheep/api/migration/index.js");
- require("../../sheep/api/migration/third.js");
- require("../../sheep/api/pay/channel.js");
- require("../../sheep/api/product/category.js");
- require("../../sheep/api/product/comment.js");
- require("../../sheep/api/product/history.js");
- require("../../sheep/api/product/spu.js");
- require("../../sheep/api/promotion/activity.js");
- require("../../sheep/api/promotion/article.js");
- require("../../sheep/api/promotion/bargain.js");
- require("../../sheep/api/promotion/combination.js");
- require("../../sheep/api/promotion/rewardActivity.js");
- require("../../sheep/api/promotion/seckill.js");
- require("../../sheep/api/system/area.js");
- require("../../sheep/api/system/voice.js");
- require("../../sheep/api/trade/afterSale.js");
- require("../../sheep/api/trade/brokerage.js");
- require("../../sheep/api/trade/config.js");
- require("../../sheep/api/trade/delivery.js");
- require("../../sheep/config/zIndex.js");
- if (!Array) {
- const _easycom_s_goods_item2 = common_vendor.resolveComponent("s-goods-item");
- const _easycom_su_fixed2 = common_vendor.resolveComponent("su-fixed");
- const _easycom_uni_load_more2 = common_vendor.resolveComponent("uni-load-more");
- const _easycom_s_empty2 = common_vendor.resolveComponent("s-empty");
- const _easycom_s_layout2 = common_vendor.resolveComponent("s-layout");
- (_easycom_s_goods_item2 + _easycom_su_fixed2 + _easycom_uni_load_more2 + _easycom_s_empty2 + _easycom_s_layout2)();
- }
- const _easycom_s_goods_item = () => "../../sheep/components/s-goods-item/s-goods-item.js";
- const _easycom_su_fixed = () => "../../sheep/ui/su-fixed/su-fixed.js";
- const _easycom_uni_load_more = () => "../../uni_modules/uni-load-more/components/uni-load-more/uni-load-more.js";
- const _easycom_s_empty = () => "../../sheep/components/s-empty/s-empty.js";
- const _easycom_s_layout = () => "../../sheep/components/s-layout/s-layout.js";
- if (!Math) {
- (_easycom_s_goods_item + _easycom_su_fixed + _easycom_uni_load_more + _easycom_s_empty + _easycom_s_layout)();
- }
- const _sfc_main = {
- __name: "goods-collect",
- setup(__props) {
- common_vendor.useCssVars((_ctx) => ({
- "a2866b58": common_vendor.unref(sys_navBar)
- }));
- const sys_navBar = sheep_index.sheep.$platform.navbar;
- const state = common_vendor.reactive({
- pagination: {
- list: [],
- total: 0,
- pageNo: 1,
- pageSize: 6
- },
- loadStatus: "",
- editMode: false,
- selectedCollectList: [],
- // 选中的 SPU 数组
- selectAll: false
- });
- async function getData() {
- state.loadStatus = "loading";
- const { code, data } = await sheep_api_product_favorite.FavoriteApi.getFavoritePage({
- pageNo: state.pagination.pageNo,
- pageSize: state.pagination.pageSize
- });
- if (code !== 0) {
- return;
- }
- state.pagination.list = common_vendor._.concat(state.pagination.list, data.list);
- state.pagination.total = data.total;
- state.loadStatus = state.pagination.list.length < state.pagination.total ? "more" : "noMore";
- }
- const onSelect = (spuId) => {
- if (!state.selectedCollectList.includes(spuId)) {
- state.selectedCollectList.push(spuId);
- } else {
- state.selectedCollectList.splice(state.selectedCollectList.indexOf(spuId), 1);
- }
- state.selectAll = state.selectedCollectList.length === state.pagination.list.length;
- };
- const onSelectAll = () => {
- state.selectAll = !state.selectAll;
- if (!state.selectAll) {
- state.selectedCollectList = [];
- } else {
- state.selectedCollectList = state.pagination.list.map((item) => item.spuId);
- }
- };
- async function onCancel() {
- if (!state.selectedCollectList) {
- return;
- }
- for (const spuId of state.selectedCollectList) {
- await sheep_api_product_favorite.FavoriteApi.deleteFavorite(spuId);
- }
- state.editMode = false;
- state.selectedCollectList = [];
- state.selectAll = false;
- sheep_util_index.resetPagination(state.pagination);
- await getData();
- }
- function loadMore() {
- if (state.loadStatus === "noMore") {
- return;
- }
- state.pagination.pageNo++;
- getData();
- }
- common_vendor.onReachBottom(() => {
- loadMore();
- });
- common_vendor.onLoad(() => {
- getData();
- });
- return (_ctx, _cache) => {
- return common_vendor.e({
- a: common_vendor.t(state.pagination.total),
- b: state.editMode && state.pagination.total
- }, state.editMode && state.pagination.total ? {
- c: common_vendor.o(($event) => state.editMode = false)
- } : {}, {
- d: !state.editMode && state.pagination.total
- }, !state.editMode && state.pagination.total ? {
- e: common_vendor.o(($event) => state.editMode = true)
- } : {}, {
- f: common_vendor.f(state.pagination.list, (item, k0, i0) => {
- return common_vendor.e(state.editMode ? {
- a: state.selectedCollectList.includes(item.spuId),
- b: common_vendor.o(($event) => onSelect(item.spuId), item.id),
- c: common_vendor.o(($event) => onSelect(item.spuId), item.id)
- } : {}, {
- d: common_vendor.o(($event) => common_vendor.unref(sheep_index.sheep).$router.go("/pages/goods/index", {
- id: item.spuId
- }), item.id),
- e: "28ee79e9-1-" + i0 + ",28ee79e9-0",
- f: common_vendor.p({
- title: item.spuName,
- img: item.picUrl,
- price: item.price,
- priceColor: "#FF3000",
- titleWidth: 400
- }),
- g: item.id
- });
- }),
- g: state.editMode,
- h: state.selectAll,
- i: common_vendor.o(onSelectAll),
- j: common_vendor.o(onSelectAll),
- k: common_vendor.o(onCancel),
- l: state.editMode,
- m: common_vendor.p({
- bottom: true,
- val: 0,
- placeholder: true
- }),
- n: state.pagination.total > 0
- }, state.pagination.total > 0 ? {
- o: common_vendor.o(loadMore),
- p: common_vendor.p({
- status: state.loadStatus,
- ["content-text"]: {
- contentdown: "上拉加载更多"
- }
- })
- } : {}, {
- q: state.pagination.total === 0
- }, state.pagination.total === 0 ? {
- r: common_vendor.p({
- text: "暂无收藏",
- icon: "/static/collect-empty.png"
- })
- } : {}, {
- s: common_vendor.s(_ctx.__cssVars()),
- t: common_vendor.p({
- title: "商品收藏"
- })
- });
- };
- }
- };
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-28ee79e9"], ["__file", "D:/zx/mall-front-app/pages/user/goods-collect.vue"]]);
- wx.createPage(MiniProgramPage);
|