activity.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <template>
  2. <view class="box">
  3. <view class="itemHistory" v-for="(item,index) in itemData" :key="index" @click="goDetail(item.id)">
  4. <image :src="item.img" mode="" class="itemImg"></image>
  5. <view class="timeBox">
  6. <image v-if="item.state==2" src="../../static/img/bg_huangse.png" mode="" class="state"></image>
  7. <image v-if="item.state==1" src="../../static/img/bg_hongse.png" mode="" class="state"></image>
  8. <view class="time" v-if="item.startTime">{{item.startTime.slice(0,10)}}-{{item.endTime.slice(0,10)}}</view>
  9. </view>
  10. <view class="name">{{item.activityName}}</view>
  11. </view>
  12. <!-- 上拉 加载更多 -->
  13. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  14. <!-- 无数据空白页 -->
  15. <nodata v-if="itemData.length==0"></nodata>
  16. <!-- 手机号授权 -->
  17. <view class="authorizBox" v-if="authorizShow" @click="authorizShow=false">
  18. <view class="authorizCont" @click.stop="">
  19. <view class="authorizName">{{wxOpenData.miniAppName}}</view>
  20. <view class="authorizMs">您好,欢迎访问本店,授权手机号登录能获取我们最新的促销活动哦~</view>
  21. <button class="authorizContbutton" type="default" open-type="getPhoneNumber"
  22. @getphonenumber="decryptPhoneNumber">授权</button>
  23. </view>
  24. <view style="text-align: center;padding-top: 56rpx;">
  25. <image src="../../static/timg/icon_guanbi@2x.png" mode="" class="authorizCloseImg"></image>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script scoped>
  31. import nodata from '../../components/nodata/nodata.vue'
  32. export default {
  33. components: {
  34. nodata,
  35. },
  36. data() {
  37. return {
  38. userInfo: '',
  39. authorizShow: false,
  40. code: '',
  41. wxOpenData: '',
  42. page: 1,
  43. itemData: [],
  44. noMoreShow: false,
  45. ext:'',
  46. }
  47. },
  48. onLoad() {
  49. this.userInfo = this.$store.state.userInfo;
  50. this.wxOpenData = this.$store.state.wxOpenData
  51. this.ext=this.$common.getExtStoreId();
  52. this.page = 1
  53. this.myOrderCoupon()
  54. },
  55. methods: {
  56. goDetail(id) {
  57. uni.navigateTo({
  58. url: 'reportDetail?id=' + id
  59. })
  60. },
  61. myOrderCoupon() {
  62. uni.showLoading({
  63. title: '加载中'
  64. })
  65. this.$http('openHome/queryActivityList', {
  66. // page: this.page,
  67. // limit: 10,
  68. unionId:this.ext.unionId
  69. }, 'GET').then(res => {
  70. uni.hideLoading();
  71. // var list = res.data.Items
  72. var list = res.data
  73. // 处理 undefined和null转为空白字符串
  74. // list.forEach((item, index) => {
  75. // for (const key in item) {
  76. // item[key] = this.$praseStrEmpty(item[key])
  77. // }
  78. // })
  79. if (this.page == 1) {
  80. this.itemData = list
  81. } else {
  82. this.itemData = this.itemData.concat(list)
  83. }
  84. if (list.length < 10) {
  85. this.noMoreShow = true
  86. } else {
  87. this.noMoreShow = false
  88. }
  89. })
  90. },
  91. },
  92. // 下拉刷新 上拉加载更多
  93. onPullDownRefresh() {
  94. this.page = 1
  95. this.myOrderCoupon()
  96. setTimeout(function() {
  97. uni.stopPullDownRefresh();
  98. }, 1000);
  99. },
  100. onReachBottom() {
  101. // this.page++;
  102. this.myOrderCoupon()
  103. },
  104. }
  105. </script>
  106. <style scoped lang="less">
  107. .box {
  108. background: #F4F5F7;
  109. min-height: 100vh;
  110. padding-top: 20rpx;
  111. }
  112. .authorizBox {
  113. width: 100vw;
  114. height: 100vh;
  115. background: rgba(0, 0, 0, 0.5);
  116. position: fixed;
  117. top: 0;
  118. left: 0;
  119. }
  120. .authorizCont {
  121. margin-top: 30vh;
  122. width: 564rpx;
  123. height: 408rpx;
  124. background: #FFFFFF;
  125. border-radius: 24rpx;
  126. margin-left: 93rpx;
  127. position: relative;
  128. }
  129. .authorizCloseImg {
  130. width: 62rpx;
  131. height: 62rpx;
  132. }
  133. .sqLogoBox {
  134. width: 180rpx;
  135. height: 180rpx;
  136. background: #FFFFFF;
  137. border-radius: 90rpx;
  138. text-align: center;
  139. position: absolute;
  140. top: -50rpx;
  141. left: 192rpx;
  142. }
  143. .authorizName {
  144. color: #333333;
  145. line-height: 42rpx;
  146. font-size: 30rpx;
  147. text-align: center;
  148. padding-top: 58rpx;
  149. }
  150. .authorizMs {
  151. color: #999999;
  152. line-height: 36rpx;
  153. font-size: 26rpx;
  154. width: 452rpx;
  155. padding-top: 24rpx;
  156. text-align: center;
  157. margin-left: 56rpx;
  158. }
  159. .authorizContbutton {
  160. width: 422rpx;
  161. height: 88rpx;
  162. background: #D53533;
  163. border-radius: 44rpx;
  164. line-height: 88rpx;
  165. text-align: center;
  166. font-size: 30rpx;
  167. color: #FFFFFF;
  168. margin-top: 62rpx;
  169. margin-left: 71rpx;
  170. }
  171. .itemHistory {
  172. margin: 0rpx 24rpx 20rpx;
  173. background-color: #FFFFFF;
  174. border-radius: 10rpx;
  175. }
  176. .itemImg {
  177. height: 280rpx;
  178. width: 702rpx;
  179. border-radius: 10rpx 10rpx 0px 0px;
  180. }
  181. .timeBox {
  182. display: flex;
  183. margin-top: -61rpx;
  184. align-items: flex-end;
  185. }
  186. .state{
  187. width: 102rpx;
  188. height: 53rpx;
  189. }
  190. .time {
  191. padding: 5rpx 10rpx;
  192. color: #FFFFFF;
  193. font-size: 24rpx;
  194. background: #000000;
  195. border-radius: 0 10rpx 0 0;
  196. }
  197. .name {
  198. padding: 24rpx 20rpx;
  199. color: #333333;
  200. font-size: 28rpx;
  201. background: #FFFFFF;
  202. border-radius: 0 0 10rpx 10rpx;
  203. }
  204. .noMore {
  205. text-align: center;
  206. line-height: 50rpx;
  207. color: #999999;
  208. font-size: 28rpx;
  209. }
  210. </style>