123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557 |
- <template>
- <view class="container clearfix">
- <tui-skeleton v-if="skeletonShow" backgroundColor="#fafafa" borderRadius="10rpx" :isLoading ="true" :loadingType="5"></tui-skeleton>
- <view class="container-content tui-skeleton" v-else>
- <view class="container-banner">
- <image
- class="image2x"
- src="https://static.caimei365.com/app/meibohui/app/activity-banner@2x.jpg"
- mode=""
- ></image>
- </view>
- <view class="container-title">超值优惠券</view>
- <view class="container-list" v-show="isRequest">
- <view class="empty-container" v-if="showEmpty">
- <image class="empty-container-image" :src="StaticUrl + '/icon/icon-coupon-empty@2x.png'"></image>
- <text class="error-text">暂无可领的优惠券~</text>
- </view>
- <template v-else>
- <view v-for="(coupon, index) in coupinList" :key="index" :id="coupon.id" class="coupon-list">
- <view class="list-cell-le">
- <view class="coupon-maxMoney"> <text class="small">¥</text> {{ coupon.couponAmount }} </view>
- <view class="coupon-minMoney"> 满{{ coupon.touchPrice }}可用 </view>
- </view>
- <view class="list-cell-ri">
- <view class="list-cell-top">
- <view class="list-cell-type">
- <view class="list-cell-tags">
- <template v-if="coupon.moneyCouponFlag == 1">
- <text class="tags" v-if="coupon.moneyCouponType == 1"
- >意向{{ coupon.couponType | TypeFormat }}</text
- >
- <text class="tags" v-else>定向{{ coupon.couponType | TypeFormat }}</text>
- </template>
- <template v-else>
- <text class="tags">{{ coupon.couponType | TypeFormat }}</text>
- </template>
- </view>
- <view class="list-cell-texts">
- <text v-if="coupon.couponType == 0">
- {{
- coupon.productType && coupon.productType == 1
- ? '全商城商品通用'
- : '仅可购买指定商品'
- }}
- </text>
- <text v-if="coupon.couponType == 1">
- {{ coupon.categoryType == 1 ? '仅限购买产品类商品' : '仅限购买仪器类商品' }}
- </text>
- <text v-if="coupon.couponType == 3"
- >仅限购买店铺【{{ coupon.shopName }}】的商品</text
- >
- <text v-if="coupon.couponType == 4 || coupon.couponType == 2">全商城商品通用</text>
- </view>
- </view>
- <view class="list-cell-btn">
- <view class="icon-used">
- <template v-if="coupon.moneyCouponFlag == 1">
- <view class="icon-used-text">购买</view>
- <view class="icon-used-btn buy" @click="toPayCoupon(coupon)"
- >¥{{ coupon.moneyCouponPrice }}</view
- >
- </template>
- <template v-else>
- <view
- class="icon-used-btn receive"
- v-if="coupon.couponBtnType == 0"
- @click="receiveCoupon(coupon)"
- >领取</view
- >
- <view
- class="icon-used-btn make"
- v-if="coupon.couponBtnType == 1"
- @click="toUseCoupon(coupon)"
- >去使用</view
- >
- </template>
- </view>
- </view>
- </view>
- <view class="list-cell-time">{{ coupon.startDate }} - {{ coupon.endDate }}</view>
- </view>
- </view>
- <!--加载loadding-->
- <tui-loadmore :visible="loadding" :index="3" type="black"></tui-loadmore>
- <tui-nomore :visible="!pullUpOn" :backgroundColor="'#ff6b2b'" :color="'#FFFFFF'" :text="nomoreText"></tui-nomore>
- <!--加载loadding-->
- </template>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { mapState, mapMutations } from 'vuex'
- import authorize from '@/common/config/authorize.js'
- import wxLogin from '@/common/config/wxLogin.js'
- import couponTabs from '@/components/cm-module/coupon/tui-tabs.vue'
- export default {
- components: {
- couponTabs
- },
- data() {
- return {
- StaticUrl: this.$Static,
- isIphoneX: this.$store.state.isIphoneX,
- listQuery: {
- userId: 0,
- pageNum: 1,
- pageSize: 10
- },
- coupinList: [],
- isRequest: false,
- showEmpty: false,
- nomoreText: '上拉显示更多',
- hasNextPage: false,
- loadding: false,
- pullUpOn: true,
- pullFlag: true,
- isReceiveLoading: false, //领券操作状态
- userIdentity: 0,
- skeletonShow:true
- }
- },
- onLoad(option) {
- if (option.type == 'share') {
- wxLogin.wxLoginAuthorize()
- }
- },
- filters: {
- TypeFormat(value) {
- switch (value) {
- case 0:
- return '活动券'
- break
- case 1:
- return '品类券'
- break
- case 2:
- return '用户专享券'
- break
- case 3:
- return '店铺券'
- break
- case 4:
- return '新用户券'
- break
- }
- }
- },
- computed: {
- ...mapState(['hasLogin', 'userInfo', 'identity', 'isActivity'])
- },
- methods: {
- async initGetStotage() {
- // 初始化
- const userInfo = await this.$api.getStorage()
- this.listQuery.userId = userInfo.userId ? userInfo.userId : 0
- this.userIdentity = userInfo.userIdentity ? userInfo.userIdentity : 0
- this.QueryCouponList()
- },
- QueryCouponList() {
- // 初始化查询优惠券列表
- this.coupinList = []
- this.listQuery.pageNum = 1
- this.ProductService.QueryCouponCenterList(this.listQuery)
- .then(response => {
- let data = response.data
- if (data.list && data.list.length > 0) {
- this.showEmpty = false
- this.hasNextPage = response.data.hasNextPage
- this.coupinList = data.list
- this.skeletonShow = false
- this.pullFlag = false
- setTimeout(() => {
- this.pullFlag = true
- }, 500)
- if (this.hasNextPage) {
- this.pullUpOn = false
- this.nomoreText = '上拉显示更多'
- } else {
- if (this.coupinList.length < 8) {
- this.pullUpOn = true
- } else {
- this.pullUpOn = false
- this.loadding = false
- this.nomoreText = '已至底部'
- }
- }
- } else {
- this.showEmpty = true
- }
- this.isRequest = true
- })
- .catch(error => {
- this.$util.msg(error.msg, 2000)
- })
- },
- getOnReachBottomData() {
- // 上滑加载分页
- this.listQuery.pageNum += 1
- this.ProductService.QueryCouponCenterList(this.listQuery)
- .then(response => {
- let data = response.data
- if (data.list && data.list.length > 0) {
- this.hasNextPage = data.hasNextPage
- this.coupinList = this.coupinList.concat(data.list)
- this.pullFlag = false // 防上拉暴滑
- setTimeout(() => {
- this.pullFlag = true
- }, 500)
- if (this.hasNextPage) {
- this.pullUpOn = false
- this.nomoreText = '上拉显示更多'
- } else {
- this.pullUpOn = false
- this.loadding = false
- this.nomoreText = '已至底部'
- }
- }
- })
- .catch(error => {
- this.$util.msg(error.msg, 2000)
- })
- },
- toPayCoupon(coupon) {
- // 点击购买优惠券,友盟埋点收集购买优惠券
- if (process.env.NODE_ENV != 'development') {
- this.$uma.trackEvent('Um_Event_meibohuiCouponBuy', {
- Um_Key_PageName: '美博会优惠券活动页',
- Um_Key_EvenName: '购买优惠券',
- Um_Key_CouponId: `${coupon.couponId}`,
- })
- }
- if (this.hasLogin) {
- if (this.userIdentity === 1 || this.userIdentity === 3) {
- this.$util.msg('您的身份暂不支持领取优惠券', 2000)
- return
- }
- this.MiniWxPayFor(coupon)
- } else {
- this.$api.navigateTo('/pages/login/login')
- }
- },
- receiveCoupon(coupon) {
- // 点击优惠券领取按钮,友盟埋点收集领取优惠券
- if (process.env.NODE_ENV != 'development') {
- this.$uma.trackEvent('Um_Event_meibohuiCouponReceive', {
- Um_Key_PageName: '美博会优惠券活动页',
- Um_Key_EvenName: '领取优惠券',
- Um_Key_CouponId: `${coupon.couponId}`,
- })
- }
- if (this.hasLogin) {
- if (this.userIdentity === 1 || this.userIdentity === 3) {
- this.$util.msg('您的身份暂不支持领取优惠券', 2000)
- return
- }
- if (this.isReceiveLoading) {
- return
- }
- this.ProductService.ReceiveCoupon({
- userId: this.listQuery.userId,
- couponId: coupon.couponId,
- source: 2
- })
- .then(response => {
- this.isReceiveLoading = true
- this.$util.msg('领取成功', 1500, true, 'success')
- setTimeout(() => {
- coupon.couponBtnType = 1
- this.isReceiveLoading = false
- }, 1500)
- })
- .catch(error => {
- this.$util.msg(error.msg, 2000)
- this.isReceiveLoading = false
- })
- } else {
- this.$api.navigateTo('/pages/login/login')
- }
- },
- toUseCoupon(coupon) {
- // 去使用跳转路径,友盟埋点收集去使用优惠券
- if (process.env.NODE_ENV != 'development') {
- this.$uma.trackEvent('Um_Event_meibohuiCouponToUseCoupon', {
- Um_Key_PageName: '美博会优惠券活动页',
- Um_Key_EvenName: '使用优惠券',
- Um_Key_CouponId: `${coupon.couponId}`,
- })
- }
- switch (coupon.couponType) {
- case 0: // 活动券:跳转到商城首页 / 或者活动页(看是否指定了商品)
- if (coupon.productType == 1) {
- // 1 全商城通用 2 指定商品
- this.$api.switchTabTo('/pages/tabBar/home/index')
- } else {
- this.$api.navigateTo('/pages/user/coupon/coupon-product?couponId=' + coupon.couponId)
- }
- break
- case 1: // 品类券:跳转到产品 287 / 仪器页 286
- this.$api.navigateTo(`/pages/goods/good-floor?linkId=${coupon.categoryType == 1 ? 287 : 286}`)
- break
- case 2: // 用户专享券:跳转到商城首页
- this.$api.switchTabTo('/pages/tabBar/home/index')
- break
- case 3: // 店铺券:跳转到店铺首页
- this.$api.navigateTo('/pages/supplier/user/my-shop?shopId=' + coupon.shopId)
- break
- case 4: // 新用户券:跳转到商城首页
- this.$api.switchTabTo('/pages/tabBar/home/index')
- break
- }
- },
- async MiniWxPayFor(coupon) {
- const wechatcode = await authorize.getCode('weixin')
- this.PayService.WeChatCouponMiniWxPay({
- userId: this.listQuery.userId,
- couponId: coupon.couponId,
- payWay: 'WEIXIN',
- code: wechatcode,
- source: 1 //支付来源 1 小程序 2 WWW
- })
- .then(response => {
- // 友盟埋点收集微信支付
- if (process.env.NODE_ENV != 'development') {
- this.$uma.trackEvent('Um_Event_meibohuiCouponPay', {
- Um_Key_PageName: '美博会优惠券活动页',
- Um_Key_SourcePage: '线上支付优惠券',
- Um_Key_CouponId: `${coupon.couponId}`,
- Um_Key_userId: `${this.userId}`
- })
- }
- let PayInfo = JSON.parse(response.data.data.payInfo)
- this.WxRequestPayment(PayInfo)
- })
- .catch(error => {
- this.$util.msg(error.msg, 2000)
- })
- },
- WxRequestPayment(data) {
- let self = this
- wx.requestPayment({
- timeStamp: data.timeStamp,
- nonceStr: data.nonceStr,
- package: data.package,
- signType: data.signType,
- paySign: data.paySign,
- success: function(res) {
- wx.reLaunch({ url: '/pages/tabBar/user/user' })
- },
- fail: function(res) {
- self.$util.msg('用户取消支付~')
- },
- complete: function(res) {}
- })
- },
- navigator(url) {
- this.$api.navigateTo(url)
- }
- },
- onShareAppMessage(res) {
- //分享美博会优惠券活动页
- if (res.from === 'button') {
- // console.log('来自页面内转发按钮')
- }
- return {
- title: '采美线上美博会盛大开启,众多优惠等着您~',
- path: '/pages/user/coupon/coupon-activity?type=share',
- imageUrl: 'https://static.caimei365.com/app/meibohui/app/activity-share@2x.jpg'
- }
- },
- onPullDownRefresh() {
- setTimeout(() => {
- this.QueryCouponList()
- uni.stopPullDownRefresh()
- }, 200)
- },
- onReachBottom() {
- if (this.hasNextPage) {
- this.loadding = true
- this.pullUpOn = true
- this.getOnReachBottomData()
- }
- },
- onShow() {
- this.initGetStotage()
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #ff6b2b;
- }
- .container {
- width: 100%;
- height: auto;
- }
- .container-banner {
- width: 750rpx;
- height: 750rpx;
- .image2x {
- width: 750rpx;
- height: 750rpx;
- display: block;
- }
- }
- .container-title {
- width: 100%;
- height: 130rpx;
- line-height: 130rpx;
- text-align: center;
- font-size: $font-size-36;
- color: #FFFFFF;
- }
- .container-list {
- box-sizing: border-box;
- padding: 0 24rpx;
- .empty-container-image {
- width: 260rpx;
- height: 260rpx;
- margin-top: -300rpx;
- }
- .toIndexPage {
- bottom: 390rpx;
- }
- .coupon-list {
- width: 100%;
- height: 200rpx;
- margin-bottom: 24rpx;
- box-sizing: border-box;
- background: url(https://static.caimei365.com/app/img/icon/icon-coupon-uesbs@2x.png);
- background-size: cover;
- .list-cell-le {
- width: 224rpx;
- height: 100%;
- box-sizing: border-box;
- padding: 37rpx 0;
- float: left;
- .coupon-maxMoney {
- width: 100%;
- height: 78rpx;
- line-height: 78rpx;
- font-size: 56rpx;
- color: #ffffff;
- text-align: center;
- .small {
- font-size: $font-size-24;
- }
- }
- .coupon-minMoney {
- width: 100%;
- height: 33rpx;
- line-height: 33rpx;
- font-size: $font-size-24;
- color: #ffffff;
- text-align: center;
- }
- }
- .list-cell-ri {
- width: 478rpx;
- height: 100%;
- box-sizing: border-box;
- padding: 20rpx 24rpx 0 24rpx;
- float: right;
- .list-cell-top {
- width: 100%;
- height: 121rpx;
- float: left;
- border-bottom: 1px solid #e1e1e1;
- .list-cell-type {
- width: 286rpx;
- height: 100%;
- float: left;
- .list-cell-tags {
- width: 100%;
- height: 32rpx;
- margin-bottom: 7rpx;
- .tags {
- display: inline-block;
- padding: 0 10rpx;
- height: 32rpx;
- line-height: 32rpx;
- background-color: #ffdcce;
- color: #f94b4b;
- font-size: $font-size-20;
- border-radius: 8rpx;
- text-align: center;
- float: left;
- }
- }
- .list-cell-texts {
- width: 100%;
- height: auto;
- line-height: 35rpx;
- text-overflow: ellipsis;
- display: -webkit-box;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- font-size: 26rpx;
- color: #333333;
- }
- }
- .list-cell-btn {
- width: 128rpx;
- height: 100%;
- float: right;
- .icon-used {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- padding-top: 28rpx;
- .icon-used-text {
- width: 100%;
- text-align: center;
- line-height: 26rpx;
- font-size: $font-size-20;
- color: #f94b4b;
- }
- .icon-used-btn {
- height: 48rpx;
- border-radius: 28rpx;
- line-height: 48rpx;
- font-size: $font-size-26;
- padding: 0 6rpx;
- text-align: center;
- box-sizing: border-box;
- &.buy {
- background-image: linear-gradient(270deg, #f94b4b 0%, #feb673 100%);
- color: #ffffff;
- }
- &.receive {
- background-image: linear-gradient(270deg, #f94b4b 0%, #feb673 100%);
- color: #ffffff;
- }
- &.make {
- border: solid 1px #f94b4b;
- color: #f94b4b;
- }
- }
- }
- }
- }
- .list-cell-time {
- width: 100%;
- height: 58rpx;
- line-height: 58rpx;
- text-align: left;
- font-size: $font-size-20;
- color: #999999;
- }
- }
- }
- }
- </style>
|