123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <template>
- <view class="container activity">
- <tui-skeleton v-if="isRequest" loadingType="2"></tui-skeleton>
- <view class="activity-banner">
- <image class="activity-banner-image" :src="activityBanner" mode=""></image>
- </view>
- <!-- 商品列表 -->
- <view class="container-section tui-skeleton clearfix">
- <view class="product-list" v-for="(pro, index) in productList" :key="index" @click.stop="detail(pro)">
- <view class="product-list-image">
- <image class="product-image" :src="pro.mainImage" mode=""></image>
- </view>
- <view class="product-list-msg">
- <view class="product-msg-name">{{ pro.name }}</view>
- <view class="product-list-tag" v-if="pro.activeStatus === 1">
- <text class="tag tag-01">促销</text> <text class="tag tag-02">活动价</text>
- <text class="tag tag-02" v-if="pro.couponsLogo">优惠券</text>
- </view>
- <view class="product-list-pri">
- <view class="price">¥{{ pro.price | priceFormat }}</view>
- <view class="carts" @click.stop="handAddCarts(pro)">
- <view class="carts-add"> <text class="iconfont icon-gouwuche"></text> </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <template v-if="productList.length >= 6">
- <tui-loadmore :index="3" :visible="loadmore"></tui-loadmore>
- <tui-nomore :text="loadingText" :visible="!loadmore" backgroundColor="#ff457b"></tui-nomore>
- </template>
- <!-- 可拖动悬浮按钮 -->
- <cm-drag :cartNum="kindCount" :isDock="true" :existTabBar="true" @btnClick="btnClick"> </cm-drag>
- </view>
- </template>
- <script>
- import wxLogin from '@/services/wxLogin.js'
- import { mapGetters, mapActions, mapMutations } from 'vuex'
- import cmDrag from '@/components/cm-module/cm-drag/cm-drag'
- export default {
- components: {
- cmDrag
- },
- data() {
- return {
- StaticUrl: this.$Static,
- activityBanner: `${this.$Static}banner.png`,
- cartNum: 0,
- listQuery: {
- activityId: 0,
- userId: 0,
- pageNum: 1,
- pageSize: 6
- },
- activityName: '',
- hasNextPage: false,
- productList: [], //商品列表
- isRefresh: false,
- isRequest: true,
- loadmore: false // 正在加载更多
- }
- },
- onLoad(option) {
- // 收集分享信息
- if (option.type && option.type === 'share') this.setInviteUserId(option.inviteUserId)
- this.listQuery.activityId = option.activityId
- this.listQuery.userId = this.userId
- this.activityName = option.name
- this.getProductActivityDetails()
- },
- filters: {
- //处理金额
- priceFormat: function(text) {
- return Number(text).toFixed(2)
- }
- },
- computed: {
- ...mapGetters(['hasLogin', 'userId', 'kindCount']),
- loadingText() {
- return this.hasNextPage ? '上拉加载更多' : '没有更多了'
- }
- },
- methods: {
- ...mapActions('cart', ['addToCart']),
- ...mapMutations('user', ['setInviteUserId']),
- // 获取活动信息
- getProductActivityDetails() {
- this.loadmore = true
- this.ProductService.GetProductActivityDetails(this.listQuery)
- .then(response => {
- const data = response.data
- this.activityBanner = data.image
- this.hasNextPage = data.pageInfo.hasNextPage
- if (this.isRefresh) {
- this.productList = data.pageInfo.list
- } else {
- this.productList = [...this.productList, ...data.pageInfo.list]
- }
- this.isRequest = false
- this.loadmore = false
- })
- .catch(error => {
- this.$util.msg(error.msg, 2000)
- })
- .finally(() => {
- if (this.isRefresh) {
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 500)
- this.isRefresh = false
- }
- })
- },
- detail(pro) {
- this.$api.navigateTo(`/pages/goods/product-detail?productId=${pro.productId}&jumpState=2`)
- },
- handAddCarts(pro) {
- this.addToCart({ productId: pro.productId, heUserId: this.userId })
- },
- btnClick() {
- this.$api.navigateTo('/pages/goods/cart')
- }
- },
- onPullDownRefresh() {
- //下拉刷新
- this.isRefresh = true
- this.listQuery.pageNum = 1
- this.getProductActivityDetails()
- },
- onReachBottom() {
- if (this.hasNextPage) {
- this.listQuery.pageNum ++
- this.getProductActivityDetails()
- }
- },
- onShareAppMessage(res) {
- //分享转发
- if (res.from === 'button') {
- // 来自页面内转发按钮
- }
- return {
- title: `${this.activityName}`,
- path: `/pages/user/activity/activity?type=share&activityId=${this.listQuery.activityId}&userId=${this.userId}&inviteUserId=${this.userId}`,
- imageUrl: 'https://static.caimei365.com/app/mini-hehe/icon/icon-index-share.jpg'
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- height: auto !important;
- background-color: $color-system;
- }
- .activity-banner {
- width: 100%;
- height: 600rpx;
- float: left;
- margin-bottom: 64rpx;
- .activity-banner-image {
- width: 100%;
- height: 100%;
- display: block;
- }
- }
- .container-section {
- width: 100%;
- height: auto;
- box-sizing: border-box;
- padding: 0 24rpx;
- .product-list {
- width: 339rpx;
- height: 532rpx;
- float: left;
- margin-right: 24rpx;
- margin-bottom: 24rpx;
- background-color: #ffffff;
- border-radius: 16rpx;
- &:nth-child(2n) {
- margin-right: 0;
- }
- .product-list-image {
- width: 100%;
- height: 339rpx;
- float: left;
- position: relative;
- .product-image {
- width: 100%;
- height: 100%;
- display: block;
- border-radius: 16rpx 16rpx 0 0;
- }
- .product-icon {
- width: 68rpx;
- height: 55rpx;
- display: block;
- position: absolute;
- top: 0;
- left: 34rpx;
- }
- }
- .product-list-msg {
- width: 100%;
- height: 193rpx;
- box-sizing: border-box;
- padding: 16rpx 24rpx;
- float: left;
- position: relative;
- .product-msg-name {
- width: 100%;
- height: 72rpx;
- line-height: 35rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- font-size: $font-size-26;
- color: #333333;
- text-align: justify;
- float: left;
- }
- .product-list-tag {
- position: relative;
- z-index: 9;
- width: 100%;
- height: 30rpx;
- margin-top: 8rpx;
- float: left;
- .tag {
- display: inline-block;
- height: 32rpx;
- font-size: 22rpx;
- line-height: 30rpx;
- text-align: center;
- color: #f83c6c;
- float: left;
- margin-right: 10rpx;
- &.tag-02 {
- width: 80rpx;
- background: url(https://static.caimei365.com/app/mini-hehe/icon/icon-active.png) top center
- no-repeat;
- background-size: contain;
- }
- &.tag-01 {
- width: 56rpx;
- color: #fff;
- background-color: #f83c6c;
- border-radius: 4rpx;
- }
- }
- }
- .product-list-pri {
- width: 100%;
- height: 44rpx;
- float: left;
- position: absolute;
- bottom: 16rpx;
- left: 0;
- box-sizing: border-box;
- padding: 0 24rpx;
- .price {
- float: left;
- font-size: $font-size-26;
- color: #f83c6c;
- font-weight: bold;
- line-height: 44rpx;
- }
- .carts {
- float: right;
- .carts-add {
- width: 44rpx;
- height: 44rpx;
- text-align: center;
- line-height: 44rpx;
- background-color: #ff457b;
- border-radius: 50%;
- .iconfont {
- font-size: 32rpx;
- color: #ffffff;
- }
- }
- }
- }
- }
- }
- }
- </style>
|