123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- <template>
- <view v-if="visible">
- <view
- v-if="adInfo && adInfo.jumpType === 3 && couponList && couponList.length > 0" class="mask mask-coupon ad-coupons"
- @touchmove.stop.prevent="moveHandle"
- >
- <view class="ad-box-warp">
- <view class="ad-boxs">
- <image class="img" :src="adInfo.popupImg"></image>
- <view class="coupon-list">
- <scroll-view :scroll-top="0" class="scrollBox" scroll-y="true">
- <view v-for="(item, index) in couponList" :key="index" class="item">
- <view class="leftBox borderBox">
- <view class="boxTop"></view>
- <view class="boxCent"></view>
- <view class="boxBottom"></view>
- </view>
- <view class="centerBox">
- <view class="money">
- <text class="num" :class="[ item.discountMode === 1 ? 'num-minus' : 'num-discount' ]">
- {{ item.reduceMoney }}
- </text>
- <text class="text">
- 满{{ item.fullMoney }}元可用
- </text>
- </view>
- <view class="text">
- <text>
- {{ item.activityName }}
- </text>
- </view>
- </view>
- <view class="rightBox borderBox">
- <view class="boxTop"></view>
- <view class="boxCent"></view>
- <view class="boxBottom"></view>
- </view>
- </view>
- </scroll-view>
- </view>
- <WxSendCoupon v-if="couponList && couponList.length > 0" :coupon-list="couponList" @closeAd="close">
- <view class="btn-receive">一键领取</view>
- </WxSendCoupon>
- </view>
- <view class="close-btn">
- <image :src="adInfo.closeImg" class="btn" mode="widthFix" @click="close()"></image>
- </view>
- </view>
- </view>
- <view v-else-if="adInfo && adInfo.jumpType !== 3" class="mask mask-coupon ad-link">
- <view class="ad-box-warp">
- <view class="ad-boxs" @click="goRoll()">
- <image class="img" :src="adInfo.popupImg" mode="widthFix"></image>
- </view>
- <view class="close-btn">
- <image :src="adInfo.closeImg" class="btn" mode="widthFix" @click="close()"></image>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import WxSendCoupon from './wx/wxSendCoupon'
- import { J_STORAGE_KEY } from '../config/constant'
- const NET = require('../utils/request')
- const API = require('../config/api')
- export default {
- name: 'AdWindow',
- components: {
- WxSendCoupon
- },
- props: {
- triggerCondition: {
- type: Number,
- default: 1
- }
- },
- data() {
- return {
- visible: false,
- adInfo: {},
- jumpContent: {},
- couponList: [],
- isLogin: false,
- buyerUserId: 0,
- cParams: {}
- }
- },
- methods: {
- // 阻止滑动
- moveHandle() {
- },
- // 获取广告信息
- getAd() {
- const res = uni.getStorageSync(J_STORAGE_KEY)
- const token = res.token
- setTimeout(() => {
- this.buyerUserId = res.buyerUserId
- this.isLogin = !!token
- NET.request(API.GetAd, {
- triggerCondition: this.triggerCondition
- }, 'POST').then((res) => {
- if (res.data) {
- this.adInfo = res.data[0]
- // console.log(this.adInfo)
- if (this.adInfo && this.adInfo.jumpContent) {
- this.jumpContent = JSON.parse(this.adInfo.jumpContent)
- }
- this.visible = true
- if (this.adInfo && this.adInfo.jumpType === 3) {
- this.getCoupons()
- }
- }
- })
- }, 500)
- },
- // 查询优惠券
- getCoupons() {
- if (this.isLogin) {
- const _items = this.jumpContent.items
- if (_items) {
- NET.request(API.getCoupons, {
- page: 1,
- pageSize: 99,
- ids: _items
- }, 'GET').then((res) => {
- if (res.data) {
- this.couponList = res.data.list
- }
- })
- .catch((res) => {
- })
- }
- } else {
- uni.showToast({
- title: '登录之后领取更多优惠',
- icon: 'none'
- })
- // uni.navigateTo({
- // url: '/pages_category_page2/userModule/login'
- // })
- }
- },
- // 关闭弹窗
- close() {
- this.visible = false
- var params = {}
- if (this.isLogin) {
- params.buyerUserId = this.buyerUserId
- } else {
- uni.getSystemInfo({
- success(res) {
- params.deviceId = res.deviceId
- }
- })
- }
- NET.request(API.adClose, params, 'POST').then((res) => {
- })
- .catch((res) => {
- })
- },
- goRoll() {
- this.visible = false
- switch (this.adInfo.jumpType) {
- case 1:
- uni.navigateTo({
- url: '/pages_category_page1/goodsModule/goodsDetails?shopId=' + this.jumpContent
- .shopId + '&productId=' + this.jumpContent.id + '&skuId=' + this.jumpContent
- .skuId
- })
- break
- case 2:
- const _id = this.jumpContent.id[this.jumpContent.id.length - 1]
- uni.navigateTo({
- url: `/pages_category_page1/goodsModule/goodsList?category3Id=${_id}`
- })
- break
- case 4:
- uni.navigateToMiniProgram({
- appId: this.jumpContent.appId,
- path: this.jumpContent.link,
- success(res) {
- // 打开成功
- }
- })
- case 5:
- uni.navigateTo({
- path: this.jumpContent.link
- })
- break
- }
- }
- }
- }
- </script>
- <style scoped
- lang="scss"
- >
- .mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 55;
- background-color: rgba(0, 0, 0, 0.7);
- }
- .mask-coupon {
- z-index: 9999;
- /*background: rgba(39, 38, 39, .15);*/
- display: flex;
- justify-content: center;
- align-items: center;
- .ad-box-warp {
- width: 100%;
- position: relative;
- }
- flex-direction: column;
- .ad-boxs {
- position: relative;
- width: 100%;
- text-align: center;
- .img {
- width: 70%;
- }
- }
- .btn-receive {
- width: 446rpx;
- height: 84rpx;
- background: #EC6F43;
- border-radius: 42rpx;
- display: block;
- text-align: center;
- font-size: 28rpx;
- line-height: 84rpx;
- color: #fff;
- position: absolute;
- bottom: 32rpx;
- left: 50%;
- margin-left: -223rpx;
- }
- .close-btn {
- position: absolute;
- bottom: -70rpx;
- left: 50%;
- margin-left: -25rpx;
- .btn {
- width: 50rpx;
- height: 50rpx;
- }
- }
- }
- .ad-coupons {
- .ad-box-warp {
- width: 510rpx;
- position: relative;
- .ad-boxs {
- min-height: 700rpx;
- .img {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- }
- }
- .coupon-list {
- width: 446rpx;
- height: 40%;
- overflow: auto;
- position: absolute;
- top: 40%;
- left: 50%;
- margin-left: -223rpx;
- .scrollBox {
- height: 450upx;
- }
- .item {
- width: 100%;
- height: 140rpx;
- margin-top: 15rpx;
- border-radius: 8rpx;
- display: flex;
- position: relative;
- align-items: center;
- overflow: hidden;
- &:first-child {
- margin-top: 0px;
- }
- .borderBox {
- width: 32rpx;
- height: 140rpx;
- overflow: hidden;
- .boxTop {
- width: 32rpx;
- height: 54rpx;
- background: #FFFFFF;
- }
- .boxCent {
- height: 36rpx;
- overflow: hidden;
- position: relative;
- &:after {
- content: '';
- width: 32rpx;
- height: 32rpx;
- border-radius: 50%;
- display: block;
- position: absolute;
- top: 50%;
- margin-top: -47rpx;
- left: -15rpx;
- border: 32rpx solid #FFFFFF;
- }
- }
- .boxBottom {
- width: 32rpx;
- height: 54rpx;
- background: #FFFFFF;
- }
- }
- .leftBox {
- .boxCent {
- &:after {
- left: -50rpx;
- }
- }
- }
- .rightBox {}
- .centerBox {
- display: flex;
- align-items: center;
- height: 140rpx;
- background: #FFFFFF;
- flex: 1;
- }
- .money {
- width: 190rpx;
- text-align: center;
- .num {
- font-size: 48rpx;
- color: #EC6F43;
- display: block;
- &.num-minus::before {
- content: '¥';
- font-size: 36rpx;
- }
- &.num-discount::after {
- content: '折';
- font-size: 36rpx;
- }
- }
- .text {
- font-size: 24rpx;
- color: #999;
- }
- }
- .text {
- flex: 1;
- padding-right: 16rpx;
- width: 0;
- text {
- font-size: 32rpx;
- color: #333;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- }
- }
- }
- </style>
|