hx-school.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <view>
  3. <view class="list" v-for="(item,index) in activityget_list" :key="item.id">
  4. <view class="u-flex">
  5. <image style="width: 92rpx;height: 92rpx;" :src="item.school.logo" mode=""></image>
  6. <view class="" style="margin-left: 20rpx;">
  7. <text class="fontsty">{{item.title}}</text>
  8. <view class="font">
  9. <text>活动时间:</text>
  10. <text>{{item.start_time.replaceAll('-','.')}}-{{item.end_time.replaceAll('-','.').slice(-5)}}</text>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="border u-row-between">
  15. <view class=""></view>
  16. <view v-if="item.status==2" class="btn" @click="togeneral(item.id)">查看活动</view>
  17. <view v-if="item.status==3" @click="tishi(1)" style="background: #d3d3d3;" class="btn">查看活动</view>
  18. <view v-if="item.status==1" @click="tishi(2)" style="background: #d3d3d3;" class="btn">查看活动</view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import {
  25. activityget_list
  26. } from "@/units/inquire.js"
  27. export default {
  28. onReachBottom() {
  29. if (this.activityget_list.length != this.total) {
  30. this.page++
  31. this.activitygetlist()
  32. }
  33. },
  34. data() {
  35. return {
  36. page: 1,
  37. activityget_list: [],
  38. }
  39. },
  40. mounted() {
  41. console.log(111);
  42. this.activitygetlist()
  43. },
  44. props: {
  45. search: ""
  46. },
  47. methods: {
  48. tishi(a) {
  49. if (a == 1) {
  50. this.$u.toast("活动已过期")
  51. } else {
  52. this.$u.toast("活动未开始")
  53. }
  54. },
  55. togeneral(id) {
  56. uni.navigateTo({
  57. url: "/pagesB/general?id=" + id
  58. })
  59. },
  60. activitygetlist() {
  61. console.log(111);
  62. activityget_list({
  63. page: this.page,
  64. search: this.search
  65. }).then(res => {
  66. console.log(res);
  67. if (this.page == 1) {
  68. this.activityget_list = res.data.data
  69. } else {
  70. this.activityget_list = this.activityget_list.concat(res.data.data)
  71. }
  72. })
  73. }
  74. }
  75. }
  76. </script>
  77. <style lang="scss" scoped>
  78. .list {
  79. padding: 32rpx 20rpx 24rpx 28rpx;
  80. background: #fff;
  81. border-radius: 16rpx;
  82. margin-top: 20rpx;
  83. .fontsty {
  84. font-size: 32rpx;
  85. font-family: SFPro-Medium, SFPro;
  86. font-weight: 500;
  87. color: #222222;
  88. }
  89. .font {
  90. font-size: 24rpx;
  91. font-family: SFPro-Regular, SFPro;
  92. font-weight: 400;
  93. color: #555555;
  94. margin-top: 14rpx;
  95. }
  96. .border {
  97. margin-top: 28rpx;
  98. border-top: 2rpx solid #F3F3F3;
  99. display: flex;
  100. }
  101. .btn {
  102. width: 164rpx;
  103. height: 68rpx;
  104. line-height: 68rpx;
  105. margin-top: 22rpx;
  106. background: #0C66C2;
  107. border-radius: 10rpx;
  108. font-size: 28rpx;
  109. font-family: PingFangSC-Regular, PingFang SC;
  110. font-weight: 400;
  111. color: #FFFFFF;
  112. margin-right: 0 !important;
  113. text-align: center;
  114. }
  115. }
  116. </style>