twoHappy.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view>
  3. <view class="list u-flex u-row-between">
  4. <view class="item" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  5. <view class="img">
  6. <image :src="item.show_image" mode=""></image>
  7. </view>
  8. <view class="title">
  9. {{item.title}}
  10. </view>
  11. <view class="content">
  12. {{item.subheading}}
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {
  22. list:[],
  23. page:1
  24. }
  25. },
  26. onReachBottom() {
  27. this.page++
  28. this.getList()
  29. },
  30. onLoad() {
  31. this.getList()
  32. },
  33. methods: {
  34. getList(){
  35. uni.$u.http.post('/api/index/business',{page:this.page}).then(res => {
  36. this.list=[...this.list,...res.data.data]
  37. })
  38. },
  39. toinfo(item){
  40. uni.setStorageSync('item',item)
  41. uni.navigateTo({
  42. url:'./twoHappyInfo'
  43. })
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss">
  49. page{
  50. background-color: #F3F3F3;
  51. padding: 20rpx 0;
  52. }
  53. .list{
  54. margin: 0 30rpx;
  55. flex-wrap: wrap;
  56. .item{
  57. width: 336rpx;
  58. margin-bottom: 20rpx;
  59. background-color: #fff;
  60. padding-bottom: 20rpx;
  61. border-radius: 16rpx;
  62. overflow: hidden;
  63. .img{
  64. image{
  65. width: 336rpx;
  66. height: 336rpx;
  67. border-radius: 16rpx 16rpx 0px 0px;
  68. }
  69. }
  70. .title{
  71. margin-bottom: 8rpx;
  72. margin-left: 12rpx;
  73. font-size: 32rpx;
  74. color: #000;
  75. font-weight: 600;
  76. }
  77. .content{
  78. margin-left: 12rpx;
  79. font-size: 22rpx;
  80. color: #888888;
  81. overflow: hidden;
  82. white-space: nowrap;
  83. text-overflow: ellipsis;
  84. }
  85. }
  86. }
  87. </style>