coupon.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <template>
  2. <view class="coupon_main" :style="'margin: 0 '+prConfig+'rpx'">
  3. <view class="coupon_count" :style="'padding-top:' + mbConfig +'rpx;border-radius:'+bgStyle+'rpx'" v-if="couponList.length">
  4. <view class="acea-row coupon-title">
  5. <text>领优惠券</text>
  6. <navigator v-if="merId" :url="'/pages/store/home/index?id='+merId+'&coupon=1'" class="more-box" hover-class="none">
  7. <view class="txt">查看更多 <text class="iconfont icon-jiantou"></text></view>
  8. </navigator>
  9. <navigator v-else url="/pages/activity/collect_coupons/index" class="more-box" hover-class="none">
  10. 查看更多 <text class="iconfont icon-jiantou"></text>
  11. </navigator>
  12. </view>
  13. <scroll-view scroll-x="true" style="white-space: nowrap; vertical-align: middle;" show-scrollbar="false">
  14. <view class="wrapper" v-if="style == 0">
  15. <view class="item item0" style="margin-right: 20rpx;" v-for="(item,index) in couponList"
  16. :key="index" hover-class="none">
  17. <view class="top" :style="{color:`${themeColor}`,backgroundImage: `url(${domain}/static/images/coupon-bg.png)`}">
  18. <view class="money"><text>¥</text>{{item.coupon_price}}</view>
  19. <view class="info">满{{item.use_min_price}}元可用</view>
  20. </view>
  21. <navigator hover-class="none" :style="{background:`${themeColor}`}" v-if="item.issue" :url="'/pages/columnGoods/goods_coupon_list/index?coupon_id='+item.coupon_id" class="coupon-btn"><text>去使用</text></navigator>
  22. <view :style="{background:`${themeColor}`}" class="coupon-btn" v-else @click="receiveCoupon(item)"><text>立即领取</text></view>
  23. </view>
  24. </view>
  25. <view class="wrapper" v-else-if="style == 1">
  26. <view class="item item1" :style="{background:`${themeColor}`}" v-for="(item,index) in couponList"
  27. :key="index" hover-class="none">
  28. <view class="itemCon acea-row row-between-wrapper">
  29. <view class="text" :style="{color:`${themeColor}`}">
  30. <view class="money"><text>¥</text>{{item.coupon_price}}</view>
  31. <view class="info">满{{item.use_min_price}}元可用</view>
  32. </view>
  33. <navigator v-if="item.issue" :url="'/pages/columnGoods/goods_coupon_list/index?coupon_id='+item.coupon_id" class="bnt"><text>去使用</text></navigator>
  34. <view class="bnt" v-else @click="receiveCoupon(item)"><text>立即领取</text></view>
  35. </view>
  36. </view>
  37. </view>
  38. </scroll-view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. // +----------------------------------------------------------------------
  44. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  45. // +----------------------------------------------------------------------
  46. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  47. // +----------------------------------------------------------------------
  48. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  49. // +----------------------------------------------------------------------
  50. // | Author: CRMEB Team <admin@crmeb.com>
  51. // +----------------------------------------------------------------------
  52. import {setCouponReceive,getCouponData} from '@/api/api.js';
  53. import { HTTP_REQUEST_URL } from '@/config/app';
  54. import { toLogin } from '@/libs/login.js';
  55. import { mapGetters } from "vuex";
  56. export default {
  57. name: 'coupon',
  58. props: {
  59. dataConfig: {
  60. type: Object,
  61. default: () => {}
  62. },
  63. merId: {
  64. type: String || Number,
  65. default: ''
  66. }
  67. },
  68. computed: mapGetters(['isLogin']),
  69. components: {},
  70. watch:{
  71. isLogin:{
  72. handler:function(newV,oldV){
  73. if(newV){
  74. this.getCoupon();
  75. }
  76. },
  77. deep:true
  78. }
  79. },
  80. data() {
  81. return {
  82. domain: HTTP_REQUEST_URL,
  83. couponList: [],
  84. style: this.dataConfig.tabConfig&&this.dataConfig.tabConfig.tabVal || 0,
  85. themeColor: this.dataConfig.themeColor.color[0].item,
  86. mbConfig: this.dataConfig.mbConfig.val*2,
  87. prConfig: this.dataConfig.prConfig&&this.dataConfig.prConfig.val*2,
  88. bgStyle: this.dataConfig.bgStyle.type ? 20 : 0,
  89. diy_id: this.dataConfig.did,
  90. unique: this.dataConfig.timestamp,
  91. };
  92. },
  93. created() {},
  94. mounted() {
  95. this.getCoupon();
  96. },
  97. methods: {
  98. getCoupon: function() {
  99. let that = this;
  100. getCouponData({
  101. diy_id: that.diy_id,
  102. unique: that.unique,
  103. mer_id: that.merId,
  104. page: 1,
  105. limit: 10
  106. }).then(res => {
  107. that.$set(that, 'couponList', res.data.list);
  108. }).catch(err => {
  109. return that.$util.Tips({
  110. title: err
  111. });
  112. });
  113. },
  114. receiveCoupon: function(item) {
  115. let that = this;
  116. if (that.isLogin === false) {
  117. toLogin()
  118. } else {
  119. setCouponReceive(item.coupon_id).then(res => {
  120. item.issue = 1
  121. uni.showToast({
  122. title: res.message,
  123. icon: 'none'
  124. })
  125. }).catch(err => {
  126. uni.showToast({
  127. title: err,
  128. icon: 'none'
  129. })
  130. })
  131. }
  132. },
  133. }
  134. }
  135. </script>
  136. <style lang="scss" scoped>
  137. .coupon_main {
  138. .coupon_count{
  139. background: #ffffff;
  140. padding: 0 0 30rpx 20rpx;
  141. }
  142. .coupon-title {
  143. justify-content: space-between;
  144. align-items: center;
  145. padding: 20rpx 20rpx 20rpx 10rpx;
  146. font-size: 28rpx;
  147. font-weight: bold;
  148. color: #282828;
  149. .more-box {
  150. display: flex;
  151. align-items: center;
  152. justify-content: center;
  153. font-size: 24rpx;
  154. font-weight: normal;
  155. image {
  156. width: 20rpx;
  157. height: 20rpx;
  158. margin-top: 10rpx;
  159. margin: 10rpx 0 0 5rpx;
  160. }
  161. .iconfont{
  162. font-size: 22rpx;
  163. }
  164. }
  165. }
  166. .item {
  167. position: relative;
  168. &.item0{
  169. margin-right: 28rpx;
  170. width: 260rpx;
  171. height: 194rpx;
  172. position: relative;
  173. display: flex;
  174. justify-content: flex-end;
  175. align-items: flex-end;
  176. .top{
  177. text-align: center;
  178. position: absolute;
  179. top: 0;
  180. left: 10rpx;
  181. width: 240rpx;
  182. height: 124rpx;
  183. background-size: 100% 100%;
  184. color: #E93323;
  185. .money{
  186. margin: 8rpx 0 2rpx;
  187. font-size: 52rpx;
  188. font-weight: bold;
  189. text{
  190. font-size: 28rpx;
  191. font-weight: normal;
  192. }
  193. }
  194. .info{
  195. font-size: 24rpx;
  196. }
  197. }
  198. .coupon-btn{
  199. width: 260rpx;
  200. height: 160rpx;
  201. text-align: center;
  202. font-size: 28rpx;
  203. display: flex;
  204. align-items: end;
  205. justify-items: center;
  206. justify-content: flex-end;
  207. border-radius: 24rpx;
  208. background: #E93323;
  209. text{
  210. display: inline-block;
  211. color: #ffffff;
  212. width: 100%;
  213. position: absolute;
  214. bottom: 20rpx;
  215. }
  216. }
  217. }
  218. &.item1{
  219. width: 244rpx;
  220. height: 126rpx;
  221. background: #BBBBBB;
  222. border-radius: 14rpx;
  223. color: #fff;
  224. margin-right: 24rpx;
  225. &::before {
  226. position: absolute;
  227. content: ' ';
  228. width: 20rpx;
  229. height: 20rpx;
  230. border-radius: 50%;
  231. background-color: #fff;
  232. left: -8rpx;
  233. top: 54rpx;
  234. }
  235. }
  236. .itemCon {
  237. width: 244rpx;
  238. height: 128rpx;
  239. .text {
  240. width: 198rpx;
  241. height: 130rpx;
  242. padding: 18rpx 0;
  243. margin: -2rpx 0 0 -1rpx;
  244. background-color: #f7f7f7;
  245. border-radius: 14rpx;
  246. .money {
  247. font-size: 48rpx;
  248. text-align: center;
  249. font-weight: bold;
  250. text {
  251. font-size: 24rpx;
  252. }
  253. }
  254. .info {
  255. font-size: 24rpx;
  256. text-align: center;
  257. }
  258. }
  259. .bnt {
  260. float: right;
  261. position: relative;
  262. height: 100%;
  263. font-size: 20rpx;
  264. writing-mode: vertical-lr;
  265. line-height: 1.2;
  266. width: 46rpx;
  267. height: 128rpx;
  268. display: flex;
  269. align-items: center;
  270. justify-content: center;
  271. }
  272. }
  273. }
  274. .wrapper {
  275. display: flex;
  276. }
  277. }
  278. </style>