123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <template>
- <!-- 商品卡片 -->
- <view>
- <!-- 1 100%宽卡片列表-->
- <view v-if="mode === 1 && state.goodsList.length" class="goods-sl-box">
- <view
- class="goods-box"
- v-for="item in state.goodsList"
- :key="item.id"
- :style="[{ marginBottom: data.space * 2 + 'rpx' }]"
- >
- <s-goods-column
- class=""
- size="sl"
- :goodsFields="goodsFields"
- :tagStyle="tagStyle"
- :data="item"
- :titleColor="goodsFields.title?.color"
- :subTitleColor="goodsFields.subtitle.color"
- :topRadius="data.borderRadiusTop"
- :bottomRadius="data.borderRadiusBottom"
- @click="sheep.$router.go('/pages/goods/index', { id: item.id })"
- >
- <template v-slot:cart>
- <button class="ss-reset-button cart-btn" :style="[buyStyle]">
- {{ buyNowStyle.mode === 1 ? buyNowStyle.text : '' }}
- </button>
- </template>
- </s-goods-column>
- </view>
- </view>
- <!-- 2 双列瀑布流列表-->
- <view
- v-if="mode === 2 && state.goodsList.length"
- class="goods-md-wrap ss-flex ss-flex-wrap ss-col-top"
- >
- <view class="goods-list-box">
- <view
- class="left-list"
- :style="[{ paddingRight: data.space + 'rpx', marginBottom: data.space + 'px' }]"
- v-for="item in state.leftGoodsList"
- :key="item.id"
- >
- <s-goods-column
- class="goods-md-box"
- size="md"
- :goodsFields="goodsFields"
- :tagStyle="tagStyle"
- :data="item"
- :titleColor="goodsFields.title?.color"
- :subTitleColor="goodsFields.subtitle.color"
- :topRadius="data.borderRadiusTop"
- :bottomRadius="data.borderRadiusBottom"
- :titleWidth="330 - marginLeft - marginRight"
- @click="sheep.$router.go('/pages/goods/index', { id: item.id })"
- @getHeight="mountMasonry($event, 'left')"
- >
- <template v-slot:cart>
- <button class="ss-reset-button cart-btn" :style="[buyStyle]">
- {{ buyNowStyle.mode === 1 ? buyNowStyle.text : '' }}
- </button>
- </template>
- </s-goods-column>
- </view>
- </view>
- <view class="goods-list-box">
- <view
- class="right-list"
- :style="[{ paddingLeft: data.space + 'rpx', marginBottom: data.space + 'px' }]"
- v-for="item in state.rightGoodsList"
- :key="item.id"
- >
- <s-goods-column
- class="goods-md-box"
- size="md"
- :goodsFields="goodsFields"
- :tagStyle="tagStyle"
- :data="item"
- :titleColor="goodsFields.title?.color"
- :subTitleColor="goodsFields.subtitle.color"
- :topRadius="data.borderRadiusTop"
- :bottomRadius="data.borderRadiusBottom"
- :titleWidth="330 - marginLeft - marginRight"
- @click="sheep.$router.go('/pages/goods/index', { id: item.id })"
- @getHeight="mountMasonry($event, 'right')"
- >
- <template v-slot:cart>
- <button class="ss-reset-button cart-btn" :style="[buyStyle]">
- {{ buyNowStyle.mode === 1 ? buyNowStyle.text : '' }}
- </button>
- </template>
- </s-goods-column>
- </view>
- </view>
- </view>
- <!-- 3 30%卡片列表-->
- <view v-if="mode === 3 && state.goodsList.length" class="goods-lg-box">
- <view
- class="goods-box"
- :style="[{ marginBottom: data.space + 'px' }]"
- v-for="item in state.goodsList"
- :key="item.id"
- >
- <s-goods-column
- class="goods-card"
- size="lg"
- :goodsFields="goodsFields"
- :data="item"
- :tagStyle="tagStyle"
- :titleColor="goodsFields.title?.color"
- :subTitleColor="goodsFields.subtitle.color"
- :topRadius="data.borderRadiusTop"
- :bottomRadius="data.borderRadiusBottom"
- @tap="sheep.$router.go('/pages/goods/index', { id: item.id })"
- >
- <template v-slot:cart>
- <button class="ss-reset-button cart-btn" :style="[buyStyle]">
- {{ buyNowStyle.mode === 1 ? buyNowStyle.text : '' }}
- </button>
- </template>
- </s-goods-column>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- /**
- * 商品模板,装修商品卡片
- * @description style 1:带tab 2:瀑布流,横向两个,上图下内容 3:大图,横向一个
- */
- import { computed, reactive, onMounted } from 'vue';
- import sheep from '@/sheep';
- const state = reactive({
- goodsList: [],
- leftGoodsList: [],
- rightGoodsList: [],
- });
- const props = defineProps({
- data: {
- type: Object,
- default() {},
- },
- styles: {
- type: Object,
- default() {},
- },
- });
- const { mode, tagStyle, buyNowStyle, goodsFields, goodsIds } = props.data ?? {};
- const { marginLeft, marginRight } = props.styles ?? {};
- async function getGoodsListByIds(ids) {
- let { data } = await sheep.$api.goods.ids({ ids });
- return data;
- }
- onMounted(async () => {
- state.goodsList = await getGoodsListByIds(goodsIds.join(','));
- if (mode === 2) {
- mountMasonry();
- }
- });
- // 加载瀑布流
- let count = 0;
- let leftHeight = 0;
- let rightHeight = 0;
- function mountMasonry(height = 0, where = 'left') {
- if (!state.goodsList[count]) return;
- if (where === 'left') leftHeight += height;
- if (where === 'right') rightHeight += height;
- if (leftHeight <= rightHeight) {
- state.leftGoodsList.push(state.goodsList[count]);
- } else {
- state.rightGoodsList.push(state.goodsList[count]);
- }
- count++;
- }
- // 购买按钮样式
- const buyStyle = computed(() => {
- if (buyNowStyle.mode == 1) {
- // button
- return {
- background: `linear-gradient(to right, ${buyNowStyle.color1}, ${buyNowStyle.color2})`,
- };
- }
- if (buyNowStyle.mode == 2) {
- // image
- return {
- width: '54rpx',
- height: '54rpx',
- background: `url(${sheep.$url.cdn(buyNowStyle.src)}) no-repeat`,
- backgroundSize: '100% 100%',
- };
- }
- });
- </script>
- <style lang="scss" scoped>
- .goods-md-wrap {
- width: 100%;
- }
- .goods-list-box {
- width: 50%;
- box-sizing: border-box;
- .left-list {
- &:nth-last-child(1) {
- margin-bottom: 0 !important;
- }
- }
- .right-list {
- &:nth-last-child(1) {
- margin-bottom: 0 !important;
- }
- }
- }
- .goods-box {
- &:nth-last-of-type(1) {
- margin-bottom: 0 !important;
- }
- }
- .goods-md-box,
- .goods-sl-box,
- .goods-lg-box {
- position: relative;
- .cart-btn {
- position: absolute;
- bottom: 18rpx;
- right: 20rpx;
- z-index: 11;
- height: 50rpx;
- line-height: 50rpx;
- padding: 0 20rpx;
- border-radius: 25rpx;
- font-size: 24rpx;
- color: #fff;
- }
- }
- </style>
|