123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- "use strict";
- const common_vendor = require("../../../common/vendor.js");
- require("../../../sheep/index.js");
- const sheep_api_trade_order = require("../../../sheep/api/trade/order.js");
- const sheep_api_product_history = require("../../../sheep/api/product/history.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/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/favorite.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_uni_load_more2 = common_vendor.resolveComponent("uni-load-more");
- const _easycom_su_popup2 = common_vendor.resolveComponent("su-popup");
- (_easycom_uni_load_more2 + _easycom_su_popup2)();
- }
- const _easycom_uni_load_more = () => "../../../uni_modules/uni-load-more/components/uni-load-more/uni-load-more.js";
- const _easycom_su_popup = () => "../../../sheep/ui/su-popup/su-popup.js";
- if (!Math) {
- (GoodsItem + OrderItem + _easycom_uni_load_more + _easycom_su_popup)();
- }
- const GoodsItem = () => "./goods.js";
- const OrderItem = () => "./order.js";
- const _sfc_main = {
- __name: "select-popup",
- props: {
- mode: {
- type: String,
- default: "goods"
- },
- show: {
- type: Boolean,
- default: false
- }
- },
- emits: ["select", "close"],
- setup(__props, { emit: __emit }) {
- const emits = __emit;
- const props = __props;
- common_vendor.watch(
- () => props.mode,
- () => {
- state.pagination.data = [];
- if (props.mode) {
- getList(state.pagination.page);
- }
- }
- );
- const state = common_vendor.reactive({
- loadStatus: "",
- pagination: {
- data: [],
- current_page: 1,
- total: 1,
- last_page: 1
- }
- });
- async function getList(page, list_rows = 5) {
- state.loadStatus = "loading";
- const res = props.mode == "goods" ? await sheep_api_product_history.SpuHistoryApi.getBrowseHistoryPage({
- page,
- list_rows
- }) : await sheep_api_trade_order.OrderApi.getOrderPage({
- page,
- list_rows
- });
- let orderList = common_vendor._.concat(state.pagination.data, res.data.data);
- state.pagination = {
- ...res.data,
- data: orderList
- };
- if (state.pagination.current_page < state.pagination.last_page) {
- state.loadStatus = "more";
- } else {
- state.loadStatus = "noMore";
- }
- }
- function loadmore() {
- if (state.loadStatus !== "noMore") {
- getList(state.pagination.current_page + 1);
- }
- }
- return (_ctx, _cache) => {
- return {
- a: common_vendor.t(__props.mode == "goods" ? "我的浏览" : "我的订单"),
- b: common_vendor.f(state.pagination.data, (item, k0, i0) => {
- return common_vendor.e(__props.mode == "goods" ? {
- a: "878522b0-1-" + i0 + ",878522b0-0",
- b: common_vendor.p({
- goodsData: item.goods
- })
- } : {}, __props.mode == "order" ? {
- c: "878522b0-2-" + i0 + ",878522b0-0",
- d: common_vendor.p({
- orderData: item
- })
- } : {}, {
- e: item,
- f: common_vendor.o(($event) => emits("select", {
- type: __props.mode,
- data: item
- }), item)
- });
- }),
- c: __props.mode == "goods",
- d: __props.mode == "order",
- e: common_vendor.p({
- status: state.loadStatus,
- ["content-text"]: {
- contentdown: "上拉加载更多"
- }
- }),
- f: common_vendor.o(loadmore),
- g: common_vendor.o(($event) => emits("close")),
- h: common_vendor.p({
- show: __props.show,
- showClose: true,
- round: "10",
- backgroundColor: "#eee"
- })
- };
- };
- }
- };
- const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-878522b0"], ["__file", "D:/zx/mall-front-app/pages/chat/components/select-popup.vue"]]);
- wx.createComponent(Component);
|