123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <template>
- <!-- 拼团活动 -->
- <view v-show="!isSortType">
- <view class="group-wrapper" :class="conStyle?'borderRadius20':''" :style="'background:'+bgColor+';margin:0 '+prConfig*2+'rpx;margin-top:'+ mbConfig*2 +'rpx;'" v-if="combinationList.length>0">
- <view class="hd">
- <view class="left">
- <image :src="imgUrl" mode=""v-if="imgUrl" class="icon"></image>
- <image src="/static/images/group02.gif" class="icon" v-else></image>
-
- <view class="name" :style="'color:'+titleColor">拼团活动</view>
- <!-- <image src="/static/images/group01.png" class="title"></image> -->
- <view class="person">
- <view class="avatar-box">
- <block v-for="(item,index) in pinkInfo.avatars" :key="index">
- <image :src="item" mode=""></image>
- </block>
- </view>
- <view class="num" v-if="pinkInfo.pink_count>0">{{pinkInfo.pink_count}}人拼团成功</view>
- </view>
- </view>
- <navigator class="more" url="/pages/activity/goods_combination/index" hover-class="none">更多 <text class="iconfont icon-jiantou"></text></navigator>
- </view>
- <view class="group-scroll">
- <scroll-view scroll-x="true" class="scroll" show-scrollbar="false">
- <view class="group-item" :style="'margin-right:'+ lrConfig*2 +'rpx;'" v-for="(item,index) in combinationList" :key="index"
- @click="goDetail(item)">
- <image :src="item.image" mode="aspectFill"></image>
- <view class="people" v-if="joinShow">{{item.people}}人参团</view>
- <view class="info">
- <view class="name line1" v-if="titleShow">{{item.title}}</view>
- <!-- #ifdef H5 || APP-PLUS -->
- <slot name="center" :item="item"></slot>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <slot name="center{{index}}"></slot>
- <!-- #endif -->
- <view class="price-box">
- <text v-if="pinkShow" class="tips" :style="'background-color:'+txtColor+';color:'+themeColor+';'">拼团价</text>
- <text v-if="priceShow" class="price" :style="'color:'+fontColor+';'"><text>¥</text>{{item.price}}</text>
- </view>
- </view>
- <view v-if="bntShow" class="bom-btn" :style="'background-color:'+themeColor+';'">参与拼团</view>
- </view>
- </scroll-view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- pink
- } from '@/api/api.js';
- import {
- getCombinationList
- } from '@/api/activity.js';
- import {
- openPinkSubscribe
- } from '@/utils/SubscribeMessage.js';
- export default {
- name: 'combination',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- isSortType:{
- type: String | Number,
- default:0
- }
- },
- data() {
- return {
- pinkInfo: '',
- combinationList: [],
- numConfig:this.dataConfig.numConfig.val,
- txtColor:this.dataConfig.txtColor.color[0].item,
- themeColor:this.dataConfig.themeColor.color[0].item,
- mbConfig:this.dataConfig.mbConfig.val,
- lrConfig:this.dataConfig.lrConfig.val,
- imgUrl:this.dataConfig.imgConfig.url,
- priceShow:this.dataConfig.priceShow.val,//是否显示价格
- bntShow:this.dataConfig.bntShow.val,//是否显示按钮
- titleShow:this.dataConfig.titleShow.val,//是否显示标题
- pinkShow:this.dataConfig.pinkShow.val,//是否显示拼团标签
- joinShow:this.dataConfig.joinShow.val,//是否显示参团标签
- prConfig:this.dataConfig.prConfig.val,
- bgColor:this.dataConfig.bgColor.color[0].item,
- conStyle:this.dataConfig.conStyle.type,
- fontColor:this.dataConfig.fontColor.color[0].item,
- titleColor:this.dataConfig.titleColor.color[0].item
- };
- },
- created() {
- },
- mounted() {
- this.pink();
- this.getCombinationList();
- },
- methods: {
- goDetail(item){
- // #ifndef MP
- uni.navigateTo({
- url:`/pages/activity/goods_combination_details/index?id=${item.id}`
- })
- // #endif
- // #ifdef MP
- openPinkSubscribe().then(res=>{
- uni.navigateTo({
- url:`/pages/activity/goods_combination_details/index?id=${item.id}`
- })
- })
- // #endif
- },
- // 拼团列表
- getCombinationList: function() {
- let that = this;
- let limit = that.$config.LIMIT;
- let data = {
- page: 1,
- limit: that.numConfig>=limit?limit:that.numConfig
- };
- getCombinationList(data).then(function(res) {
- that.combinationList = res.data;
- }).catch((res) => {
- return that.$util.Tips({
- title: res
- });
- })
- },
- // 拼团数据(拼团人数头部图片)
- pink: function() {
- pink().then(res => {
- this.pinkInfo = res.data
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .scroll {
- white-space: nowrap;
- display: flex;
- }
- .group-wrapper {
- padding: 20rpx 20rpx 26rpx 20rpx;
- background: #fff;
- .hd {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .left {
- display: flex;
- align-items: center;
- .name{
- font-size: 32rpx;
- font-weight: 600;
- }
- .icon {
- width: 36rpx;
- height: 36rpx;
- margin-right: 12rpx;
- }
- .title {
- width: 134rpx;
- height: 33rpx;
- }
- .person {
- display: flex;
- align-items: center;
- margin-left: 40rpx;
- .avatar-box {
- display: flex;
- align-items: center;
- image {
- width: 30rpx;
- height: 30rpx;
- border-radius: 50%;
- margin-right: -10rpx;
- }
- }
- .num {
- margin-left: 18rpx;
- font-size: 26rpx;
- color: #999999;
- }
- }
- }
- .more {
- font-size: 26rpx;
- color: #999;
- .iconfont {
- margin-left: 6rpx;
- font-size: 25rpx;
- }
- }
- }
- .group-scroll {
- width: 100%;
- margin-top: 25rpx;
- .group-item {
- display: inline-block;
- width: 220rpx;
- box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.03);
- border-radius: 16rpx;
- position: relative;
- background-color: #fff;
- .people {
- position: absolute;
- width: 140rpx;
- height: 32rpx;
- background: rgba(0, 0, 0, 0.3);
- box-shadow: 2rpx 2rpx 8rpx 0 rgba(0, 0, 0, 0.06);
- border-radius: 16rpx;
- top: 12rpx;
- left: 12rpx;
- font-size: 20rpx;
- color: #fff;
- text-align: center;
- line-height: 32rpx;
- }
- image {
- width: 100%;
- height: 220rpx;
- border-radius: 16rpx 16rpx 0 0;
- }
- .info {
- padding: 2rpx 12rpx 10rpx 12rpx;
- .name {
- font-size: 24rpx;
- }
- .price-box {
- display: flex;
- align-items: center;
- margin-top: 6rpx;
- .tips {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 76rpx;
- height: 30rpx;
- margin-right: 6rpx;
- border-radius: 2px;
- font-size: 18rpx;
- }
- .price {
- font-size: 28rpx;
- font-weight: 700;
- text {
- font-size: 18rpx;
- }
- }
- }
- }
- .bom-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 48rpx;
- border-radius: 0px 0px 16rpx 16rpx;
- color: #fff;
- font-size: 24rpx;
- }
- }
- }
- }
- </style>
|