jingxuan-list.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <view class="content">
  3. <view class="list">
  4. <list-info :type="type" :data="item" v-for="(item,index) in list" :key="index"></list-info>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. import $api from '@/static/js/api.js'
  10. import listInfo from '@/components/list-info/index.vue'
  11. export default {
  12. components: {
  13. listInfo
  14. },
  15. data() {
  16. return {
  17. type: '',
  18. list: [],
  19. page: 1,
  20. limit: 10,
  21. last_page: 1
  22. }
  23. },
  24. onLoad(option) {
  25. this.type = option.type
  26. if(this.type == 'info') {
  27. uni.setNavigationBarTitle({
  28. title: '资讯'
  29. })
  30. }
  31. if(this.type == 'article') {
  32. uni.setNavigationBarTitle({
  33. title: '文章'
  34. })
  35. }
  36. if(this.type == 'video') {
  37. uni.setNavigationBarTitle({
  38. title: '视频'
  39. })
  40. }
  41. },
  42. onShow() {
  43. this.list = []
  44. this.getlist()
  45. },
  46. onPullDownRefresh() {
  47. },
  48. onReachBottom() {
  49. if(this.last_page == this.page) {
  50. uni.$u.toast('已经到底了')
  51. return
  52. } else {
  53. this.page++
  54. this.getlist()
  55. }
  56. },
  57. methods: {
  58. getlist() {
  59. var _this = this
  60. $api.req({
  61. url: _this.type,
  62. method: 'GET',
  63. data: {
  64. page: _this.page,
  65. limit: _this.limit,
  66. is_boutique: 1,
  67. format_type: 'normal'
  68. }
  69. }, function(res) {
  70. if(res.code == 10000) {
  71. _this.list = _this.list.concat(res.data.list)
  72. _this.last_page = res.data.last_page
  73. }
  74. })
  75. },
  76. }
  77. }
  78. </script>
  79. <style lang="scss">
  80. </style>