| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 | <!-- 装修商品组件:【拼团】商品卡片 --><template>  <!-- 商品卡片 -->  <view>    <!-- 布局1. 单列大图(上图,下内容)-->    <view      v-if="layoutType === LayoutTypeEnum.ONE_COL_BIG_IMG && state.spuList.length"      class="goods-sl-box"    >      <view        class="goods-box"        v-for="item in state.spuList"        :key="item.id"        :style="[{ marginBottom: data.space * 2 + 'rpx' }]"      >        <s-goods-column          class=""          size="sl"          :goodsFields="data.fields"          :tagStyle="data.badge"          :data="item"          :titleColor="data.fields.name?.color"          :subTitleColor="data.fields.introduction.color"          :topRadius="data.borderRadiusTop"          :bottomRadius="data.borderRadiusBottom"          @click="sheep.$router.go('/pages/goods/groupon', { id: item.activityId })"        >          <!-- 购买按钮 -->          <template v-slot:cart>            <button class="ss-reset-button cart-btn" :style="[buyStyle]">              {{ btnBuy.type === 'text' ? btnBuy.text : '' }}            </button>          </template>        </s-goods-column>      </view>    </view>    <!-- 布局2. 单列小图(左图,右内容) -->    <view      v-if="layoutType === LayoutTypeEnum.ONE_COL_SMALL_IMG && state.spuList.length"      class="goods-lg-box"    >      <view        class="goods-box"        :style="[{ marginBottom: data.space + 'px' }]"        v-for="item in state.spuList"        :key="item.id"      >        <s-goods-column          class="goods-card"          size="lg"          :goodsFields="data.fields"          :data="item"          :tagStyle="data.badge"          :titleColor="data.fields.name?.color"          :subTitleColor="data.fields.introduction.color"          :topRadius="data.borderRadiusTop"          :bottomRadius="data.borderRadiusBottom"          @tap="sheep.$router.go('/pages/goods/groupon', { id: item.activityId })"        >          <!-- 购买按钮 -->          <template v-slot:cart>            <button class="ss-reset-button cart-btn" :style="[buyStyle]">              {{ btnBuy.type === 'text' ? btnBuy.text : '' }}            </button>          </template>        </s-goods-column>      </view>    </view>    <!-- 布局3. 双列(每一列:上图,下内容)-->    <view      v-if="layoutType === LayoutTypeEnum.TWO_COL && state.spuList.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.leftSpuList"          :key="item.id"        >          <s-goods-column            class="goods-md-box"            size="md"            :goodsFields="data.fields"            :tagStyle="data.badge"            :data="item"            :titleColor="data.fields.name?.color"            :subTitleColor="data.fields.introduction.color"            :topRadius="data.borderRadiusTop"            :bottomRadius="data.borderRadiusBottom"            :titleWidth="330 - marginLeft - marginRight"            @click="sheep.$router.go('/pages/goods/groupon', { id: item.activityId })"            @getHeight="calculateGoodsColumn($event, 'left')"          >            <!-- 购买按钮 -->            <template v-slot:cart>              <button class="ss-reset-button cart-btn" :style="[buyStyle]">                {{ btnBuy.type === 'text' ? btnBuy.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.rightSpuList"          :key="item.id"        >          <s-goods-column            class="goods-md-box"            size="md"            :goodsFields="data.fields"            :tagStyle="data.badge"            :data="item"            :titleColor="data.fields.name?.color"            :subTitleColor="data.fields.introduction.color"            :topRadius="data.borderRadiusTop"            :bottomRadius="data.borderRadiusBottom"            :titleWidth="330 - marginLeft - marginRight"            @click="sheep.$router.go('/pages/goods/groupon', { id: item.activityId })"            @getHeight="calculateGoodsColumn($event, 'right')"          >            <!-- 购买按钮 -->            <template v-slot:cart>              <button class="ss-reset-button cart-btn" :style="[buyStyle]">                {{ btnBuy.type === 'text' ? btnBuy.text : '' }}              </button>            </template>          </s-goods-column>        </view>      </view>    </view>  </view></template><script setup>  /**   * 商品卡片   */  import { computed, onMounted, reactive, ref } from 'vue';  import sheep from '@/sheep';  import CombinationApi from '@/sheep/api/promotion/combination';  import SpuApi from '@/sheep/api/product/spu';  // 布局类型  const LayoutTypeEnum = {    // 单列大图    ONE_COL_BIG_IMG: 'oneColBigImg',    // 双列    TWO_COL: 'twoCol',    // 单列小图    ONE_COL_SMALL_IMG: 'oneColSmallImg',  };  const state = reactive({    spuList: [],    leftSpuList: [],    rightSpuList: [],  });  const props = defineProps({    data: {      type: Object,      default() {},    },    styles: {      type: Object,      default() {},    },  });  const { layoutType, btnBuy, activityIds } = props.data || {};  const { marginLeft, marginRight } = props.styles || {};  // 购买按钮样式  const buyStyle = computed(() => {    if (btnBuy.type === 'text') {      // 文字按钮:线性渐变背景颜色      return {        background: `linear-gradient(to right, ${btnBuy.bgBeginColor}, ${btnBuy.bgEndColor})`,      };    }    if (btnBuy.type === 'img') {      // 图片按钮      return {        width: '54rpx',        height: '54rpx',        background: `url(${sheep.$url.cdn(btnBuy.imgUrl)}) no-repeat`,        backgroundSize: '100% 100%',      };    }  });  //region 商品瀑布流布局  // 下一个要处理的商品索引  let count = 0;  // 左列的高度  let leftHeight = 0;  // 右列的高度  let rightHeight = 0;  /**   * 计算商品在左列还是右列   * @param height 商品的高度   * @param where 添加到哪一列   */  function calculateGoodsColumn(height = 0, where = 'left') {    // 处理完    if (!state.spuList[count]) return;    // 增加列的高度    if (where === 'left') leftHeight += height;    if (where === 'right') rightHeight += height;    // 添加到矮的一列    if (leftHeight <= rightHeight) {      state.leftSpuList.push(state.spuList[count]);    } else {      state.rightSpuList.push(state.spuList[count]);    }    // 计数    count++;  }  //endregion  /**   * 根据商品编号列表,获取商品列表   * @param ids 商品编号列表   * @return {Promise<undefined>} 商品列表   */  async function getCombinationActivityDetailList(ids) {    const { data } = await CombinationApi.getCombinationActivityListByIds(ids);    return data;  }  /**   * 根据商品编号,获取商品详情   * @param ids 商品编号列表   * @return {Promise<undefined>} 商品列表   */  async function getSpuDetail(ids) {    const { data: spu } = await SpuApi.getSpuDetail(ids);    return spu;  }  // 初始化  onMounted(async () => {    // 加载活动列表    const activityList = await getCombinationActivityDetailList(activityIds.join(','));    // 循环获取活动商品SPU详情并添加到spuList    for (const activity of activityList) {      state.spuList.push(await getSpuDetail(activity.spuId));    }    // 循环活动列表    activityList.forEach((activity) => {      // 提取活动价格      const combinationPrice = activity.combinationPrice || Infinity;      // 查找对应的 spu 并更新价格      const spu = state.spuList.find((spu) => activity.spuId === spu.id);      if (spu) {        // 赋值最低价格        spu.price = Math.min(combinationPrice, spu.price);        // 赋值活动ID,为了点击跳转详情页        spu.activityId = activity.id;      }    });    // 只有双列布局时需要    if (layoutType === LayoutTypeEnum.TWO_COL) {      // 分列      calculateGoodsColumn();    }  });</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>
 |