activity.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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 class="name" @click="goEdit(item.ID)">编辑</view>
  12. </view>
  13. <!-- 上拉 加载更多 -->
  14. <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
  15. <!-- 无数据空白页 -->
  16. <nodata v-if="itemData.length==0"></nodata>
  17. </view>
  18. </template>
  19. <script scoped>
  20. import nodata from '../../components/nodata/nodata.vue'
  21. export default {
  22. components: {
  23. nodata,
  24. },
  25. data() {
  26. return {
  27. page: 1,
  28. itemData: [],
  29. noMoreShow: false,
  30. }
  31. },
  32. onLoad() {
  33. this.page = 1
  34. this.myOrderCoupon()
  35. },
  36. methods: {
  37. goDetail(id) {
  38. // uni.navigateTo({
  39. // url: 'jkDetail?id=' + id
  40. // })
  41. },
  42. goEdit(id) {
  43. uni.navigateTo({
  44. url: 'eadit?id=' + id
  45. })
  46. },
  47. myOrderCoupon() {
  48. uni.showLoading({
  49. title: '加载中'
  50. })
  51. this.$http('openH5SetTheGuest/getAtivity', {
  52. page: this.page,
  53. limit: 10,
  54. state:""
  55. }, 'GET').then(res => {
  56. uni.hideLoading();
  57. // var list = res.data.Items
  58. var list = res.data.Items
  59. // 处理 undefined和null转为空白字符串
  60. // list.forEach((item, index) => {
  61. // for (const key in item) {
  62. // item[key] = this.$praseStrEmpty(item[key])
  63. // }
  64. // })
  65. if (this.page == 1) {
  66. this.itemData = list
  67. } else {
  68. this.itemData = this.itemData.concat(list)
  69. }
  70. if (list.length < 10) {
  71. this.noMoreShow = true
  72. } else {
  73. this.noMoreShow = false
  74. }
  75. })
  76. },
  77. },
  78. // 下拉刷新 上拉加载更多
  79. onPullDownRefresh() {
  80. this.page = 1
  81. this.myOrderCoupon()
  82. setTimeout(function() {
  83. uni.stopPullDownRefresh();
  84. }, 1000);
  85. },
  86. onReachBottom() {
  87. this.page++;
  88. this.myOrderCoupon()
  89. },
  90. }
  91. </script>
  92. <style scoped lang="less">
  93. .box {
  94. background: #F4F5F7;
  95. min-height: 100vh;
  96. padding-top: 20rpx;
  97. }
  98. .itemHistory {
  99. margin: 0rpx 24rpx 20rpx;
  100. background-color: #FFFFFF;
  101. border-radius: 10rpx;
  102. }
  103. .itemImg {
  104. height: 280rpx;
  105. width: 702rpx;
  106. border-radius: 10rpx 10rpx 0px 0px;
  107. }
  108. .timeBox {
  109. display: flex;
  110. margin-top: -61rpx;
  111. align-items: flex-end;
  112. }
  113. .state{
  114. width: 102rpx;
  115. height: 53rpx;
  116. }
  117. .time {
  118. padding: 5rpx 10rpx;
  119. color: #FFFFFF;
  120. font-size: 24rpx;
  121. background: #000000;
  122. border-radius: 0 10rpx 0 0;
  123. }
  124. .name {
  125. padding: 24rpx 20rpx;
  126. color: #333333;
  127. font-size: 28rpx;
  128. background: #FFFFFF;
  129. border-radius: 0 0 10rpx 10rpx;
  130. }
  131. .noMore {
  132. text-align: center;
  133. line-height: 50rpx;
  134. color: #999999;
  135. font-size: 28rpx;
  136. }
  137. </style>