huati.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <template>
  2. <view class="content">
  3. <view class="search">
  4. <u-search placeholder="搜索话题" :disabled="true" clearabled :showAction="false" @click="tosearch"></u-search>
  5. </view>
  6. <view class="hflex center">
  7. <scroll-view class="left" :scroll-y="true">
  8. <view class="left-item" :class="left_active == index ? 'left-active' : ''"
  9. v-for="(item,index) in left_list" :key="index" @click="toleft(index)">
  10. <text>{{item.name}}</text>
  11. </view>
  12. </scroll-view>
  13. <scroll-view class="right" :scroll-y="true">
  14. <view class="right-item" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  15. <text>{{item.title}}</text>
  16. </view>
  17. </scroll-view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import $api from '@/static/js/api.js'
  23. export default {
  24. data() {
  25. return {
  26. keyword: '',
  27. left_list: [],
  28. left_active: 0,
  29. list: [],
  30. type: '',
  31. page: 1,
  32. limit: 10
  33. }
  34. },
  35. onLoad(option) {
  36. if (option.type) {
  37. this.type = option.type
  38. }
  39. this.getleft()
  40. },
  41. onShow() {
  42. },
  43. onPullDownRefresh() {
  44. },
  45. onReachBottom() {
  46. },
  47. methods: {
  48. toinfo(item) {
  49. if (this.type == 'select') {
  50. const eventChannel = this.getOpenerEventChannel();
  51. eventChannel.emit('getitem', item);
  52. uni.navigateBack()
  53. } else {
  54. uni.navigateTo({
  55. url: '/pageA/topic-detail?id=' + item.id
  56. })
  57. }
  58. },
  59. toleft(index) {
  60. this.left_active = index
  61. this.list = []
  62. this.getlist()
  63. },
  64. tosearch() {
  65. uni.navigateTo({
  66. url: '/pageA/huati-search'
  67. })
  68. },
  69. getlist() {
  70. var _this = this
  71. $api.req({
  72. url: 'topic',
  73. method: 'GET',
  74. data: {
  75. page: _this.page,
  76. limit: _this.limit,
  77. category_id: _this.left_list[_this.left_active].id
  78. }
  79. }, function(res) {
  80. if (res.code == 10000) {
  81. _this.list = res.data.list
  82. }
  83. })
  84. },
  85. getleft() {
  86. var _this = this
  87. $api.req({
  88. url: 'topic/category',
  89. method: 'GET',
  90. }, function(res) {
  91. if (res.code == 10000) {
  92. _this.left_list = res.data
  93. _this.getlist()
  94. }
  95. })
  96. }
  97. }
  98. }
  99. </script>
  100. <style lang="scss">
  101. .content::v-deep {
  102. background: #FFFFFF;
  103. .search {
  104. width: 694rpx;
  105. height: 76rpx;
  106. background: #F5F5F5;
  107. border-radius: 16rpx;
  108. margin: 0 auto;
  109. }
  110. .center {
  111. box-sizing: border-box;
  112. padding: 36rpx 0 0;
  113. .right {
  114. box-sizing: border-box;
  115. padding: 0 28rpx 0 60rpx;
  116. .right-item {
  117. padding: 34rpx 0;
  118. border-bottom: 1px solid #F4F4F4;
  119. }
  120. .right-item:last-child {
  121. border: none;
  122. }
  123. }
  124. .left {
  125. height: calc(100vh - 192rpx);
  126. width: 204rpx;
  127. background: #F5F5F5;
  128. .left-item {
  129. width: 100%;
  130. padding: 26rpx 0;
  131. box-sizing: border-box;
  132. background: #F5F5F5;
  133. font-size: 28rpx;
  134. font-family: PingFangSC, PingFang SC;
  135. font-weight: 400;
  136. color: #999999;
  137. text-align: center;
  138. }
  139. .left-active {
  140. color: #222222;
  141. background: #FFFFFF;
  142. }
  143. }
  144. }
  145. }
  146. </style>