123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- <template>
- <view :style="viewColor" class="page-container">
- <view class='flash-sale'>
- <view class="fixed-head">
- <view class="sys-head" :style="{height:statusBarHeight}"></view>
- <view class="tool-bar">
-
- <view v-if='!$wechat.isWeixin()' class='iconfont icon-xiangzuo' @tap='goBack'></view>
-
- <user-name-swiper class="name-swiper" :style="'top:'+ (navH/2) +'rpx'" :combinationUserList="combinationUserList"></user-name-swiper>
- </view>
- </view>
- <view class='head' :style="{ 'background-image': `url(${domain}/static/diy/combination${keyColor}.png)` }">
- <view class="sys-head" :style="{height:statusBarHeight}"></view>
- <view class="tool-bar"></view>
- <view class='header'>
- <view class="success_per">
- <view class="success_num">{{combinationUserCount}}人已参与拼团</view>
- <view class="activity_pic" v-if="combinationUserList.length > 0">
- <view v-for="(item,index) in combinationUserList.slice(0,10)" class="picture" :key="index">
- <image v-if="index != 9" class="avatar" :src='item.avatar ? item.avatar : "/static/images/f.png"'></image>
- <span v-else class="avatar" style="background:#fff;"><text class="iconfont icon-gengduo1"></text></span>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="main_count">
- <tabNav class="tabNav" :class="{'fixed':isFixed}" :tabTitle="navTop" @changeTab='changeTab'></tabNav>
- <view class='list'>
- <block v-for="(item,index) in combinationList" :key='index'>
- <view class='item acea-row row-between-wrapper' @tap='goDetails(item)'>
- <view class='pictrue'>
- <image :src='item.product.image'></image>
- </view>
- <view class='text acea-row row-column-around'>
- <view class='name line1'>{{item.product.store_name}}</view>
- <view class='booking'>
- <text class="count">
- <text class="iconfont icon-pintuan"></text>
- {{item.buying_count_num}}人团 <text class="line"></text>
- 已拼{{item.sales ? item.sales : 0}}{{item.product.unit_name}}
- </text>
- </view>
- <view class="progress">
- <view class='combination_price'>
- <text class="combination_text">拼团价</text>
- <text class="price">¥ <text>{{ item.price }}</text></text>
- </view>
- <view class='order_btn' :style="{ 'background-image': `url(${domain}/static/diy/pink_btn${keyColor}.png)` }">去拼团</view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </view>
- </view>
- <home></home>
-
- <passwordPopup></passwordPopup>
-
- </view>
- </template>
- <script>
-
-
-
-
-
-
-
-
-
- import { getCombinationList, getCombinationUser, getActivitycategory } from '../../../api/activity.js';
- import home from '@/components/home/index.vue'
- import tabNav from '@/components/combinNav'
- import userNameSwiper from '@/components/userNameSwiper/userNameSwiper.vue'
- import { getIndexData } from '@/api/api.js';
- import { configMap } from "@/utils";
- import { HTTP_REQUEST_URL } from '@/config/app';
-
- import passwordPopup from '@/components/passwordPopup';
-
- import { mapGetters } from "vuex";
- let app = getApp();
- export default {
- components: {
-
- passwordPopup,
-
- home,
- tabNav,
- userNameSwiper
- },
- computed: configMap({statusBarHeight:0},mapGetters(['viewColor','keyColor'])),
- data() {
- return {
- domain: HTTP_REQUEST_URL,
- navH: '',
- topImage: '',
- combinationList: [],
- combinationUserList: [],
- combinationUserCount: 0,
- navTop: [{
- 'cate_name': '精选',
- store_category_id: ''
- }],
- active: 1,
- type: 0,
- scrollLeft: 0,
- interval: 0,
- status: 1,
- page: 1,
- limit: 10,
- loading: false,
- loadend: false,
- pageloading: false,
- isFixed: false,
- navIndex: 0,
- avatar: '../../../static/images/f.png',
- headBg: '../static/images/comHead'
- }
- },
-
-
- onShareAppMessage: function() {
- wx.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- })
- return {
- title: '拼团',
- path: 'pages/activity/combination/index',
- }
- },
- onShareTimeline: function() {
- return {
- title: '拼团活动',
- query: {
- key: ''
- },
- imageUrl: ''
- }
- },
-
- onLoad() {
- var pages = getCurrentPages();
- uni.setNavigationBarTitle({
- title: "拼团列表"
- })
- this.navH = app.globalData.navHeight;
- this.getCombinationProductList('');
- this.getIndexConfig();
- this.getCombinationUser();
- },
- methods: {
- goBack: function() {
- uni.navigateBack();
- },
- getCombinationProductList: function(store_category_id) {
- var that = this;
- var data = {
- page: that.page,
- limit: that.limit,
- store_category_id: store_category_id
- };
- if (that.pageloading) return;
- this.pageloading = true
- getCombinationList(data).then(res => {
- var combinationList = res.data.list;
- that.page++;
- that.combinationList = that.combinationList.concat(combinationList);
- uni.stopPullDownRefresh();
- that.page = that.page;
- that.pageloading = false;
- }).catch(err => {
- that.pageloading = false
- });
- },
-
- getIndexConfig: function() {
- let that = this;
- getActivitycategory(4).then(res => {
- that.navTop = that.navTop.concat(res.data)
- })
- },
-
- getCombinationUser: function() {
- let that = this;
- getCombinationUser({
- limit: 30
- }).then(res => {
- that.$set(that, "combinationUserCount", res.data.count);
- that.$set(that, "combinationUserList", res.data.list);
- })
- },
- // 导航分类切换
- changeTab(e) {
- let that = this
- if (that.navIndex == e.index) return
- that.navIndex = e.index;
- that.page = 1;
- that.limit = 8;
- that.combinationList = [];
- that.getCombinationProductList(e.pid)
- },
- goDetails(item) {
- uni.navigateTo({
- url: '/pages/activity/combination_details/index?id=' + item.product_group_id
- })
- }
- },
- onPullDownRefresh: function(){
- this.page = 1;
- this.pageloading = false;
- this.loadend = false;
- this.combinationList = []
- this.getCombinationProductList('');
- },
-
- onReachBottom: function() {
- this.getCombinationProductList('');
- },
-
- onPageScroll(e) {
-
- let self = this
- if (e.scrollTop >= self.searchH) {
- self.isFixed = true
- } else {
- self.isFixed = false
- }
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .page-container{
- min-height: 100vh;
- background-color: var(--view-theme);
- padding-bottom: 20rpx;
- }
- .icon-xiangzuo {
- margin-left: 20rpx;
- font-size: 40rpx;
- color: #fff;
- }
- .head {
- display: flex;
- flex-direction: column;
- /* #ifdef MP || APP-PLUS */
- height: 576rpx;
- /* #endif */
- /* #ifdef H5 */
- height: 490rpx;
- /* #endif */
- background-repeat: no-repeat;
- background-size: 100% 100%;
- width: 100%;
- }
- .name-swiper{
- margin-left: 40rpx;
- }
- .header {
- flex: 1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .success_per {
- width: 100%;
- text-align: center;
- left: 0;
- .success_num {
- color: #FFF1BF;
- font-size: 26rpx;
- }
- }
- }
- .activity_pic {
- margin-left: 20rpx;
- padding-left: 20rpx;
- position: relative;
- display: inline-block;
- margin-top: 17rpx;
- background: rgba(0, 0, 0, .15);
- padding: 13rpx 24rpx 13rpx 14rpx;
- border-radius: 33rpx;
- .picture {
- display: inline-block;
- }
- .avatar {
- width: 42rpx;
- height: 42rpx;
- line-height: 20rem;
- display: inline-block;
- background-repeat: no-repeat;
- background-size: center/cover;
- position: relative;
- text-align: center;
- color: #fff;
- font-weight: 600;
- vertical-align: bottom;
- font-size: .875rem;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- border-radius: 50%;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: 0 0;
- margin-right: -10rpx;
- box-shadow: 0 0 0 1px #fff;
- position: relative;
- text {
- position: absolute;
- line-height: 42rpx;
- color: #8E8E8E;
- width: 42rpx;
- left: 0;
- }
- }
- }
- .noCommodity {
- border-top: none;
- }
- .flash-sale .header {
- width: 100%;
- position: relative;
- }
- .flash-sale .main_count {
- position: relative;
- top: 10rpx;
- }
- .flash-sale .timeList {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 0 auto;
- }
- .flash-sale .timeList .item {
- font-size: 20rpx;
- color: #666;
- text-align: center;
- box-sizing: border-box;
- width: 224rpx;
- }
- .flash-sale .timeList .item .time {
- font-size: 26rpx;
- color: #AAAAAA;
- }
- .flash-sale .timeList .item.on .time {
- color: #FD6523;
- font-weight: 600;
- span {
- position: relative;
- &::after {
- content: '';
- display: inline-block;
- width: 100%;
- height: 4rpx;
- background: #FD6523;
- position: absolute;
- left: 0;
- bottom: -4rpx;
- border-radius: 2rpx;
- }
- }
- }
- .flash-sale .list {
- margin-top: 24rpx;
- }
- .flash-sale .list .item {
- height: 278rpx;
- position: relative;
- width: 90%;
- margin: 0 auto 20rpx auto;
- background-color: #fff;
- border-radius: 20rpx;
- padding: 0 25rpx;
- &:last-child{
- margin-bottom: 0;
- }
- }
- .flash-sale .list .item .pictrue {
- width: 240rpx;
- height: 240rpx;
- border-radius: 10rpx;
- }
- .flash-sale .list .item .pictrue image {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- .flash-sale .list .item .text {
- width: 370rpx;
- font-size: 30rpx;
- color: #333;
- }
- .flash-sale .list .item .text .name {
- width: 100%;
- color: #282828;
- font-weight: bold;
- font-size: 28rpx;
- }
- .flash-sale .list .item .text .booking {
- margin-top: 17rpx;
- }
- .flash-sale .list .item .text .booking .count {
- font-size: 22rpx;
- color: var(--view-priceColor);
- border-radius: 18rpx;
- background-color: var(--view-bgColor);
- line-height: 36rpx;
- padding: 5rpx 12rpx;
- .iconfont {
- margin-right: 10rpx;
- }
- .line {
- display: inline-block;
- width: 1rpx;
- height: 14rpx;
- background: #F49088;
- margin: 0 9rpx;
- position: relative;
- top: -3rpx;
- }
- }
- .flash-sale .list .item .text .limit {
- font-size: 22rpx;
- color: #999;
- margin-bottom: 5rpx;
- }
- .flash-sale .list .item .text .limit .limitPrice {
- margin-left: 10rpx;
- }
- .flash-sale .list .item .text .progress {
- margin-top: 20rpx;
- overflow: hidden;
- .combination_price {
- line-height: 15px;
- padding: 8rpx 0;
- color: #282828;
- float: left;
- position: relative;
- top: 10rpx;
- .combination_text {
- font-size: 22rpx;
- }
- .price {
- font-size: 24rpx;
- font-weight: bold;
- }
- }
- .order_btn {
- float: right;
- width: 145rpx;
- height: 62rpx;
- text-align: center;
- color: #FFFFFF;
- font-size: 26rpx;
- line-height: 72rpx;
- background-size: 100%;
- }
- }
- .tool-bar{
- display: flex;
- align-items: center;
- height: 40px;
- }
- .fixed-head{
- position: absolute;
- left: 0;
- top: 20px;
- width: 100%;
- z-index: 10;
- }
- </style>
|