hx-school.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view>
  3. <view class="list" @click="togeneral(item.id)" 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">
  15. <!-- <button class="btn"></button> -->
  16. <view class="btn">查看活动</view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script >
  22. import {activityget_list} from "@/units/inquire.js"
  23. export default {
  24. onReachBottom() {
  25. if (this.activityget_list.length != this.total) {
  26. this.page++
  27. this.activitygetlist()
  28. }
  29. },
  30. data() {
  31. return {
  32. page:1,
  33. activityget_list:[],
  34. }
  35. },
  36. mounted(){
  37. console.log(111);
  38. this.activitygetlist()
  39. },
  40. props:{
  41. search:""
  42. },
  43. methods: {
  44. togeneral(id){
  45. uni.navigateTo({
  46. url:"/pagesB/general?id="+id
  47. })
  48. },
  49. activitygetlist(){
  50. console.log(111);
  51. activityget_list({
  52. page:this.page,
  53. search:this.search
  54. }).then(res=>{
  55. console.log(res);
  56. if(this.page == 1){
  57. this.activityget_list = res.data.data
  58. }else{
  59. this.activityget_list = this.activityget_list.concat(res.data.data)
  60. }
  61. })
  62. }
  63. }
  64. }
  65. </script>
  66. <style lang="scss" scoped>
  67. .list{
  68. padding: 32rpx 20rpx 24rpx 28rpx;
  69. background: #fff;
  70. border-radius: 16rpx;
  71. margin-top: 20rpx;
  72. .fontsty{
  73. font-size: 32rpx;
  74. font-family: SFPro-Medium, SFPro;
  75. font-weight: 500;
  76. color: #222222;
  77. }
  78. .font{
  79. font-size: 24rpx;
  80. font-family: SFPro-Regular, SFPro;
  81. font-weight: 400;
  82. color: #555555;
  83. margin-top: 14rpx;
  84. }
  85. .border{
  86. margin-top: 28rpx;
  87. border-top: 2rpx solid #F3F3F3;
  88. }
  89. .btn{
  90. width: 164rpx;
  91. height: 68rpx;
  92. line-height: 68rpx;
  93. margin-top: 22rpx;
  94. background: #0C66C2;
  95. border-radius: 10rpx;
  96. font-size: 28rpx;
  97. font-family: PingFangSC-Regular, PingFang SC;
  98. font-weight: 400;
  99. color: #FFFFFF;
  100. margin-right: 0 !important;
  101. }
  102. }
  103. </style>