123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- "use strict";
- const common_vendor = require("../../../../common/vendor.js");
- const sheep_index = require("../../../../sheep/index.js");
- const sheep_api_product_comment = require("../../../../sheep/api/product/comment.js");
- require("../../../../sheep/url/index.js");
- require("../../../../sheep/store/index.js");
- require("../../../../sheep/store/app.js");
- require("../../../../sheep/api/promotion/diy.js");
- require("../../../../sheep/request/index.js");
- require("../../../../sheep/config/index.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/helper/throttle.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/config/zIndex.js");
- if (!Array) {
- const _easycom_s_empty2 = common_vendor.resolveComponent("s-empty");
- _easycom_s_empty2();
- }
- const _easycom_s_empty = () => "../../../../sheep/components/s-empty/s-empty.js";
- if (!Math) {
- (commentItem + _easycom_s_empty)();
- }
- const commentItem = () => "./comment-item.js";
- const _sfc_main = {
- __name: "detail-comment-card",
- props: {
- goodsId: {
- type: [Number, String],
- default: 0
- }
- },
- setup(__props) {
- const props = __props;
- const state = common_vendor.reactive({
- commentList: [],
- // 评论列表,只展示最近的 3 条
- total: 0
- // 总评论数
- });
- async function getComment(id) {
- const { data } = await sheep_api_product_comment.CommentApi.getCommentPage(id, 1, 3, 0);
- state.commentList = data.list;
- state.total = data.total;
- }
- common_vendor.onBeforeMount(() => {
- getComment(props.goodsId);
- });
- return (_ctx, _cache) => {
- return common_vendor.e({
- a: common_vendor.t(state.total),
- b: state.commentList.length > 0
- }, state.commentList.length > 0 ? {
- c: common_vendor.o(($event) => common_vendor.unref(sheep_index.sheep).$router.go("/pages/goods/comment/list", {
- id: __props.goodsId
- }))
- } : {}, {
- d: common_vendor.f(state.commentList, (item, k0, i0) => {
- return {
- a: "489ea6d9-0-" + i0,
- b: common_vendor.p({
- item
- }),
- c: item.id
- };
- }),
- e: state.commentList.length === 0
- }, state.commentList.length === 0 ? {
- f: common_vendor.p({
- paddingTop: "0",
- icon: "/static/comment-empty.png",
- text: "期待您的第一个评价"
- })
- } : {});
- };
- }
- };
- const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-489ea6d9"], ["__file", "/Users/RuHu.Xu/Desktop/mall-newfeifan-zx-app/pages/goods/components/detail/detail-comment-card.vue"]]);
- wx.createComponent(Component);
|