look.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <template>
  2. <view>
  3. <view class="page">
  4. <view class="list u-flex" v-for="(item,index) in list" :key="item.id" @click="todetails(item.id)">
  5. <view class="u-flex">
  6. <image style="width: 84rpx;height: 84rpx;border-radius: 50%;margin-right: 20rpx;" :src="item.user.avatar" mode=""></image>
  7. <view class="">
  8. <view class="u-flex font u-row-between" style="width: 520rpx;">
  9. <view class="">
  10. <text class="left">{{item.user.name}}</text>
  11. <text class="center">{{item.user.job_text}}</text>
  12. </view>
  13. <text class="right">{{item.updatetime_text}}</text>
  14. </view>
  15. <text class="bottom">{{item.user.company_text}}</text>
  16. </view>
  17. </view>
  18. </view>
  19. <view style="height: 70vh;justify-content: center;" class="u-flex" v-if="list.length == 0">
  20. <u-empty text="暂无数据" mode="list"></u-empty>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import {
  27. browse_get_list
  28. } from "@/units/inquire.js"
  29. export default {
  30. data() {
  31. return {
  32. page: 1,
  33. list: [],
  34. total:0
  35. }
  36. },
  37. onLoad() {
  38. this.slist()
  39. },
  40. onReachBottom() {
  41. if(this.list.length != this.total){
  42. this.page++
  43. this.slist()
  44. }
  45. },
  46. methods: {
  47. slist() {
  48. browse_get_list({
  49. page: this.page
  50. }).then(res => {
  51. this.total = res.data.total
  52. if(this.page == 1){
  53. this.list = res.data.data
  54. }else{
  55. this.list = this.list.concat(res.data.data)
  56. }
  57. })
  58. },
  59. todetails(id) {
  60. uni.navigateTo({
  61. url: "/pagesB/details?id=" + id
  62. })
  63. }
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. .page {
  69. background-color: #f3f3f3;
  70. padding:0 24rpx;
  71. height: calc(100vh );
  72. border:2rpx solid transparent;
  73. .list {
  74. background: #FFFFFF;
  75. border-radius: 16rpx;
  76. padding:24rpx 32rpx;
  77. height: 148rpx;
  78. box-sizing: border-box;
  79. margin-top: 20rpx;
  80. }
  81. .font{
  82. height: 44rpx;
  83. .left{
  84. font-size: 32rpx;
  85. font-family: PingFangSC-Medium, PingFang SC;
  86. font-weight: 500;
  87. color: #222222;
  88. }
  89. .center{
  90. margin-left: 20rpx;
  91. font-size: 20rpx;
  92. font-family: PingFangSC-Regular, PingFang SC;
  93. font-weight: 400;
  94. color: #777777;
  95. }
  96. .right{
  97. font-size: 20rpx;
  98. font-family: SFPro-Regular, SFPro;
  99. font-weight: 400;
  100. color: #777777;
  101. }
  102. }
  103. .bottom{
  104. margin-top: 20rpx;
  105. font-size: 20rpx;
  106. font-family: PingFangSC-Regular, PingFang SC;
  107. font-weight: 400;
  108. color: #555555;
  109. }
  110. }
  111. </style>