receiveCoupon.vue 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <template>
  2. <view class="content">
  3. <view class="top"></view>
  4. <view class="lineBOx">
  5. <view class="line" v-for="(item,index) in list">
  6. <view class="lineLeft">
  7. <view class="lineName">{{item.actName}}</view>
  8. <view class="moneyBox">
  9. <span class="moneyBs">¥</span>
  10. <span class="moneyNum">{{item.actMoney}}</span>
  11. <span class="mdsky">{{item.whereMoney!==0?'满'+item.whereMoney+'可用':'无限制'}}</span>
  12. </view>
  13. <view class="endOffsetDays">
  14. <span v-if="item.endOffsetDays">领取后{{item.endOffsetDays}}天有效</span>
  15. <span v-else>{{item.startTime|dateformat}} - {{item.endTime|dateformat}}</span>
  16. </view>
  17. </view>
  18. <view class="lineRight">
  19. <view class="receiveBtn" @click="receive(item.id)">领取</view>
  20. </view>
  21. </view>
  22. </view>
  23. <!-- 领取说明 -->
  24. <view class="illustrateBox" v-if="comment">
  25. <view class="illustratex"></view>
  26. <view class="illustrate">领取说明</view>
  27. <view class="illustratex"></view>
  28. </view>
  29. <view class="comment" v-html="comment"> </view>
  30. <!-- 一键领取 -->
  31. <!-- <view class="oneClick">一键领取</view> -->
  32. <!-- 手机号授权 -->
  33. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  34. <view class="authorizCont" @click.stop="">
  35. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  36. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  37. <button class="authorizContbutton" type="default" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">授权</button>
  38. </view>
  39. <view style="text-align: center;padding-top: 56rpx;">
  40. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. list:[],
  50. comment:'',
  51. authorizShow:false,
  52. userInfo:'',
  53. ext:'',
  54. wxOpenData:'',
  55. }
  56. },
  57. onLoad(opt) {
  58. this.userInfo=this.$store.state.userInfo;
  59. this.ext=this.$common.getExtStoreId();
  60. //scene=2E03F5108B434EFABD70F2D208890209
  61. if(this.userInfo){
  62. this.getCouponCenterList()
  63. }else{
  64. this.$common.automaticlogin().then(val => {
  65. this.userInfo=this.$store.state.userInfo;
  66. this.wxOpenData=this.$store.state.wxOpenData;
  67. this.getCouponCenterList()
  68. if(!this.userInfo){
  69. this.authorizShow=true
  70. }
  71. })
  72. }
  73. },
  74. filters:{
  75. dateformat(val){
  76. return val.slice(0,10)
  77. }
  78. },
  79. methods: {
  80. receive(id){
  81. uni.showLoading({
  82. title: '领取中'
  83. })
  84. this.$http('opencoupon/getCoupons', {
  85. id: id,
  86. }, 'GET').then(res => {
  87. //uni.hideLoading();
  88. if(res.code==0){
  89. uni.showToast({
  90. title: '领取成功',
  91. icon:'none',
  92. duration: 3000
  93. });
  94. }
  95. this.getCouponCenterList();
  96. })
  97. },
  98. getCouponCenterList(){
  99. var params={}
  100. this.$http('opencoupon/getCouponCenterList', params, 'GET').then(res => {
  101. //uni.hideLoading();
  102. this.list = res.data.list;
  103. this.comment=res.data.comment;
  104. })
  105. },
  106. authorizShowno(){
  107. this.authorizShow=false
  108. },
  109. decryptPhoneNumber: function(e) {
  110. console.log(e);
  111. this.code=e.detail.code
  112. this.wxPhoneLogin()
  113. this.authorizShow=false;
  114. },
  115. wxPhoneLogin(){
  116. var that=this;
  117. this.$http('miniApp2/sys/wxPhoneLogin', {
  118. appId:this.ext.appId,
  119. unionId:this.ext.unionId,
  120. code:this.code,
  121. openId:this.wxOpenData.openid
  122. },'POST').then(res => {
  123. var data = res.data;
  124. if(data.loginInfo){
  125. this.userInfo=data.loginInfo.openUser;
  126. this.wxOpenData=data.loginInfo;
  127. this.$store.commit('mutationswxOpenData', data)
  128. this.$store.commit('mutationsuserInfo', this.userInfo)
  129. this.getCouponCenterList()
  130. }
  131. })
  132. },
  133. }
  134. }
  135. </script>
  136. <style scoped>
  137. .comment{
  138. padding: 0 24rpx;
  139. color: #FFFFFF;
  140. font-size: 24rpx;
  141. }
  142. .oneClick{
  143. width: 368rpx;height: 82rpx;text-align: center;line-height: 82rpx;
  144. background: url('http://dmsphoto.66km.com.cn/thFiles/D810AED4-98B9-49DB-87E6-42C015BAD016.png');
  145. background-size: 100% 100%;font-weight: 500;
  146. color: #FF0000;font-size: 30rpx;
  147. margin: 0 auto;
  148. margin-top: 80rpx;
  149. }
  150. .content{
  151. min-height: 100vh;
  152. background:#FD5300 ;
  153. }
  154. .top{
  155. height: 272rpx;
  156. background: url('http://dmsphoto.66km.com.cn/thFiles/8CE54BE7-E78E-4BC5-98B7-6320CE691301.png');
  157. background-size: 100% 100%;
  158. }
  159. .line{
  160. background: url('http://dmsphoto.66km.com.cn/thFiles/47158ED0-1F6C-4C6D-840B-D92AADFED33D.png');
  161. background-size: 100% 100%;
  162. margin-top: 20rpx;
  163. height: 200rpx;display: flex;justify-content: space-between;
  164. }
  165. .lineBOx{
  166. padding: 0 24rpx;
  167. }
  168. .lineLeft{
  169. padding-left: 20rpx;padding-top: 24rpx;
  170. }
  171. .lineName{
  172. font-weight: 500;font-size: 30rpx;
  173. color: #333333;
  174. line-height: 42rpx;
  175. }
  176. .moneyBox{
  177. padding-top: 8rpx;display: flex;
  178. }
  179. .moneyBs{
  180. font-weight: 500;font-size: 28rpx;
  181. color: #FF0000;padding-top: 20rpx;
  182. }
  183. .moneyNum{
  184. font-weight: 500;font-size: 48rpx;
  185. color: #FF0000;
  186. }
  187. .mdsky{
  188. font-weight: 400;font-size: 24rpx;
  189. color: #666666;padding-top: 24rpx;padding-left: 2rpx;
  190. }
  191. .endOffsetDays{
  192. font-weight: 400;font-size: 24rpx;
  193. color: #666666;padding-top: 10rpx;
  194. }
  195. .receiveBtn{
  196. width: 150rpx;
  197. height: 56rpx;
  198. background: #FF502D;
  199. border-radius: 36rpx;
  200. text-align: center;
  201. line-height: 56rpx;
  202. font-weight: 500;
  203. color: #FFFFFF;
  204. font-size: 28rpx;
  205. }
  206. .lineRight{
  207. display: flex;
  208. align-items: center;
  209. padding-right: 30rpx;
  210. }
  211. .illustrateBox{
  212. display: flex;padding: 30rpx 0;
  213. justify-content: center;
  214. }
  215. .illustratex{
  216. width: 34rpx;height: 5rpx;background: #FFFFFF;margin-top: 18rpx;
  217. }
  218. .illustrate{
  219. font-size: 28rpx;
  220. font-family: PingFangSC-Medium, PingFang SC;
  221. font-weight: 500;
  222. color: #FFFFFF;padding: 0 16rpx;
  223. line-height: 40rpx
  224. }
  225. .authorizBox{
  226. width: 100vw;
  227. height: 100vh;
  228. background: rgba(0, 0, 0, 0.5);
  229. position: fixed;
  230. top: 0;
  231. left: 0;
  232. }
  233. .authorizCont{
  234. margin-top: 30vh;
  235. width: 564rpx;
  236. height: 408rpx;
  237. background: #FFFFFF;
  238. border-radius: 24rpx;
  239. margin-left: 93rpx;
  240. position: relative;
  241. }
  242. .authorizCloseImg{
  243. width: 62rpx;
  244. height: 62rpx;
  245. }
  246. .sqLogoBox{
  247. width: 180rpx;
  248. height: 180rpx;
  249. background: #FFFFFF;
  250. border-radius: 90rpx;
  251. text-align: center;
  252. position: absolute;
  253. top: -50rpx;
  254. left: 192rpx;
  255. }
  256. .authorizName{
  257. color: #333333;
  258. line-height: 42rpx;
  259. font-size: 30rpx;
  260. text-align: center;
  261. padding-top: 58rpx;
  262. }
  263. .authorizMs{
  264. color: #999999;
  265. line-height: 36rpx;
  266. font-size: 26rpx;
  267. width: 452rpx;
  268. padding-top: 24rpx;
  269. text-align: center;
  270. margin-left: 56rpx;
  271. }
  272. .authorizContbutton{
  273. width: 422rpx;
  274. height: 88rpx;
  275. background: #D53533;
  276. border-radius: 44rpx;
  277. line-height: 88rpx;
  278. text-align: center;
  279. font-size:30rpx;
  280. color: #FFFFFF;
  281. margin-top: 62rpx;
  282. margin-left:71rpx;
  283. }
  284. </style>