adWindow.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. <template>
  2. <view v-if="visible">
  3. <view
  4. v-if="adInfo && adInfo.jumpType === 3 && couponList && couponList.length > 0" class="mask mask-coupon ad-coupons"
  5. @touchmove.stop.prevent="moveHandle"
  6. >
  7. <view class="ad-box-warp">
  8. <view class="ad-boxs">
  9. <image class="img" :src="adInfo.popupImg"></image>
  10. <view class="coupon-list">
  11. <scroll-view :scroll-top="0" class="scrollBox" scroll-y="true">
  12. <view v-for="(item, index) in couponList" :key="index" class="item">
  13. <view class="leftBox borderBox">
  14. <view class="boxTop"></view>
  15. <view class="boxCent"></view>
  16. <view class="boxBottom"></view>
  17. </view>
  18. <view class="centerBox">
  19. <view class="money">
  20. <text class="num" :class="[ item.discountMode === 1 ? 'num-minus' : 'num-discount' ]">
  21. {{ item.reduceMoney }}
  22. </text>
  23. <text class="text">
  24. 满{{ item.fullMoney }}元可用
  25. </text>
  26. </view>
  27. <view class="text">
  28. <text>
  29. {{ item.activityName }}
  30. </text>
  31. </view>
  32. </view>
  33. <view class="rightBox borderBox">
  34. <view class="boxTop"></view>
  35. <view class="boxCent"></view>
  36. <view class="boxBottom"></view>
  37. </view>
  38. </view>
  39. </scroll-view>
  40. </view>
  41. <WxSendCoupon v-if="couponList && couponList.length > 0" :coupon-list="couponList" @closeAd="close">
  42. <view class="btn-receive">一键领取</view>
  43. </WxSendCoupon>
  44. </view>
  45. <view class="close-btn">
  46. <image :src="adInfo.closeImg" class="btn" mode="widthFix" @click="close()"></image>
  47. </view>
  48. </view>
  49. </view>
  50. <view v-else-if="adInfo && adInfo.jumpType !== 3" class="mask mask-coupon ad-link">
  51. <view class="ad-box-warp">
  52. <view class="ad-boxs" @click="goRoll()">
  53. <image class="img" :src="adInfo.popupImg" mode="widthFix"></image>
  54. </view>
  55. <view class="close-btn">
  56. <image :src="adInfo.closeImg" class="btn" mode="widthFix" @click="close()"></image>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. import WxSendCoupon from './wx/wxSendCoupon'
  64. import { J_STORAGE_KEY } from '../config/constant'
  65. const NET = require('../utils/request')
  66. const API = require('../config/api')
  67. export default {
  68. name: 'AdWindow',
  69. components: {
  70. WxSendCoupon
  71. },
  72. props: {
  73. triggerCondition: {
  74. type: Number,
  75. default: 1
  76. }
  77. },
  78. data() {
  79. return {
  80. visible: false,
  81. adInfo: {},
  82. jumpContent: {},
  83. couponList: [],
  84. isLogin: false,
  85. buyerUserId: 0,
  86. cParams: {}
  87. }
  88. },
  89. methods: {
  90. // 阻止滑动
  91. moveHandle() {
  92. },
  93. // 获取广告信息
  94. getAd() {
  95. const res = uni.getStorageSync(J_STORAGE_KEY)
  96. const token = res.token
  97. setTimeout(() => {
  98. this.buyerUserId = res.buyerUserId
  99. this.isLogin = !!token
  100. NET.request(API.GetAd, {
  101. triggerCondition: this.triggerCondition
  102. }, 'POST').then((res) => {
  103. if (res.data) {
  104. this.adInfo = res.data[0]
  105. // console.log(this.adInfo)
  106. if (this.adInfo && this.adInfo.jumpContent) {
  107. this.jumpContent = JSON.parse(this.adInfo.jumpContent)
  108. }
  109. this.visible = true
  110. if (this.adInfo && this.adInfo.jumpType === 3) {
  111. this.getCoupons()
  112. }
  113. }
  114. })
  115. }, 500)
  116. },
  117. // 查询优惠券
  118. getCoupons() {
  119. if (this.isLogin) {
  120. const _items = this.jumpContent.items
  121. if (_items) {
  122. NET.request(API.getCoupons, {
  123. page: 1,
  124. pageSize: 99,
  125. ids: _items
  126. }, 'GET').then((res) => {
  127. if (res.data) {
  128. this.couponList = res.data.list
  129. }
  130. })
  131. .catch((res) => {
  132. })
  133. }
  134. } else {
  135. uni.showToast({
  136. title: '登录之后领取更多优惠',
  137. icon: 'none'
  138. })
  139. // uni.navigateTo({
  140. // url: '/pages_category_page2/userModule/login'
  141. // })
  142. }
  143. },
  144. // 关闭弹窗
  145. close() {
  146. this.visible = false
  147. var params = {}
  148. if (this.isLogin) {
  149. params.buyerUserId = this.buyerUserId
  150. } else {
  151. uni.getSystemInfo({
  152. success(res) {
  153. params.deviceId = res.deviceId
  154. }
  155. })
  156. }
  157. NET.request(API.adClose, params, 'POST').then((res) => {
  158. })
  159. .catch((res) => {
  160. })
  161. },
  162. goRoll() {
  163. this.visible = false
  164. switch (this.adInfo.jumpType) {
  165. case 1:
  166. uni.navigateTo({
  167. url: '/pages_category_page1/goodsModule/goodsDetails?shopId=' + this.jumpContent
  168. .shopId + '&productId=' + this.jumpContent.id + '&skuId=' + this.jumpContent
  169. .skuId
  170. })
  171. break
  172. case 2:
  173. const _id = this.jumpContent.id[this.jumpContent.id.length - 1]
  174. uni.navigateTo({
  175. url: `/pages_category_page1/goodsModule/goodsList?category3Id=${_id}`
  176. })
  177. break
  178. case 4:
  179. uni.navigateToMiniProgram({
  180. appId: this.jumpContent.appId,
  181. path: this.jumpContent.link,
  182. success(res) {
  183. // 打开成功
  184. }
  185. })
  186. case 5:
  187. uni.navigateTo({
  188. path: this.jumpContent.link
  189. })
  190. break
  191. }
  192. }
  193. }
  194. }
  195. </script>
  196. <style scoped
  197. lang="scss"
  198. >
  199. .mask {
  200. position: fixed;
  201. top: 0;
  202. left: 0;
  203. right: 0;
  204. bottom: 0;
  205. z-index: 55;
  206. background-color: rgba(0, 0, 0, 0.7);
  207. }
  208. .mask-coupon {
  209. z-index: 9999;
  210. /*background: rgba(39, 38, 39, .15);*/
  211. display: flex;
  212. justify-content: center;
  213. align-items: center;
  214. .ad-box-warp {
  215. width: 100%;
  216. position: relative;
  217. }
  218. flex-direction: column;
  219. .ad-boxs {
  220. position: relative;
  221. width: 100%;
  222. text-align: center;
  223. .img {
  224. width: 70%;
  225. }
  226. }
  227. .btn-receive {
  228. width: 446rpx;
  229. height: 84rpx;
  230. background: #EC6F43;
  231. border-radius: 42rpx;
  232. display: block;
  233. text-align: center;
  234. font-size: 28rpx;
  235. line-height: 84rpx;
  236. color: #fff;
  237. position: absolute;
  238. bottom: 32rpx;
  239. left: 50%;
  240. margin-left: -223rpx;
  241. }
  242. .close-btn {
  243. position: absolute;
  244. bottom: -70rpx;
  245. left: 50%;
  246. margin-left: -25rpx;
  247. .btn {
  248. width: 50rpx;
  249. height: 50rpx;
  250. }
  251. }
  252. }
  253. .ad-coupons {
  254. .ad-box-warp {
  255. width: 510rpx;
  256. position: relative;
  257. .ad-boxs {
  258. min-height: 700rpx;
  259. .img {
  260. position: absolute;
  261. top: 0;
  262. left: 0;
  263. width: 100%;
  264. height: 100%;
  265. }
  266. }
  267. }
  268. .coupon-list {
  269. width: 446rpx;
  270. height: 40%;
  271. overflow: auto;
  272. position: absolute;
  273. top: 40%;
  274. left: 50%;
  275. margin-left: -223rpx;
  276. .scrollBox {
  277. height: 450upx;
  278. }
  279. .item {
  280. width: 100%;
  281. height: 140rpx;
  282. margin-top: 15rpx;
  283. border-radius: 8rpx;
  284. display: flex;
  285. position: relative;
  286. align-items: center;
  287. overflow: hidden;
  288. &:first-child {
  289. margin-top: 0px;
  290. }
  291. .borderBox {
  292. width: 32rpx;
  293. height: 140rpx;
  294. overflow: hidden;
  295. .boxTop {
  296. width: 32rpx;
  297. height: 54rpx;
  298. background: #FFFFFF;
  299. }
  300. .boxCent {
  301. height: 36rpx;
  302. overflow: hidden;
  303. position: relative;
  304. &:after {
  305. content: '';
  306. width: 32rpx;
  307. height: 32rpx;
  308. border-radius: 50%;
  309. display: block;
  310. position: absolute;
  311. top: 50%;
  312. margin-top: -47rpx;
  313. left: -15rpx;
  314. border: 32rpx solid #FFFFFF;
  315. }
  316. }
  317. .boxBottom {
  318. width: 32rpx;
  319. height: 54rpx;
  320. background: #FFFFFF;
  321. }
  322. }
  323. .leftBox {
  324. .boxCent {
  325. &:after {
  326. left: -50rpx;
  327. }
  328. }
  329. }
  330. .rightBox {}
  331. .centerBox {
  332. display: flex;
  333. align-items: center;
  334. height: 140rpx;
  335. background: #FFFFFF;
  336. flex: 1;
  337. }
  338. .money {
  339. width: 190rpx;
  340. text-align: center;
  341. .num {
  342. font-size: 48rpx;
  343. color: #EC6F43;
  344. display: block;
  345. &.num-minus::before {
  346. content: '¥';
  347. font-size: 36rpx;
  348. }
  349. &.num-discount::after {
  350. content: '折';
  351. font-size: 36rpx;
  352. }
  353. }
  354. .text {
  355. font-size: 24rpx;
  356. color: #999;
  357. }
  358. }
  359. .text {
  360. flex: 1;
  361. padding-right: 16rpx;
  362. width: 0;
  363. text {
  364. font-size: 32rpx;
  365. color: #333;
  366. display: block;
  367. overflow: hidden;
  368. text-overflow: ellipsis;
  369. white-space: nowrap;
  370. }
  371. }
  372. }
  373. }
  374. }
  375. </style>