index.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <template>
  2. <view class="luntan-index">
  3. <u-navbar title=" " bgColor="#00B0B0" :autoBack="false" :placeholder="true" :fixed="true" height="44">
  4. <view class="search" slot="left">
  5. <u-search placeholder="" v-model="search" :disabled="true" :showAction="false"
  6. @click="tosearch"></u-search>
  7. <!-- <u-search placeholder="" v-model="search" :showAction="false" @search="tosearch"></u-search> -->
  8. </view>
  9. <view class="search-right hflex acenter" slot="right">
  10. <image src="@/static/images/menu.png" mode="aspectFill"></image>
  11. <image src="@/static/images/add.png" mode="aspectFill" @click.stop="show_add = !show_add"></image>
  12. <view class="add-show" v-if="show_add">
  13. <view class="hflex acenter show-item" @click="toadd('info')">
  14. <image src="@/static/images/add-zixun.png" mode="aspectFill"></image>
  15. <text>发布资讯</text>
  16. </view>
  17. <view class="hflex acenter show-item" @click="toadd('article')">
  18. <image src="@/static/images/add-wenzhang.png" mode="aspectFill"></image>
  19. <text>发布文章</text>
  20. </view>
  21. <view class="hflex acenter show-item" @click="toadd('video')">
  22. <image src="@/static/images/add-shipin.png" mode="aspectFill"></image>
  23. <text>发布视频</text>
  24. </view>
  25. <view class="hflex acenter show-item" @click="toadd('post')">
  26. <image src="@/static/images/add-luntan.png" mode="aspectFill"></image>
  27. <text>发布论坛</text>
  28. </view>
  29. </view>
  30. </view>
  31. </u-navbar>
  32. <view class="top">
  33. <swiper-list type="post"></swiper-list>
  34. <view class="vflex huati">
  35. <view class="hflex acenter jbetween">
  36. <view class="title">话题推荐</view>
  37. <view class="more-text" @click="tomore">查看更多</view>
  38. </view>
  39. <scroll-view :scroll-x="true" class="tuijian">
  40. <view class="hflex acenter">
  41. <view class="tuijian-item" v-for="(item,index) in tuijian_list" :key="index">
  42. <view class="item-box vflex" v-for="(a,b) in item" :key="b">
  43. <view @click="toinfo(a)">{{a.title}}</view>
  44. </view>
  45. </view>
  46. </view>
  47. </scroll-view>
  48. </view>
  49. <view class="tabs hflex acenter">
  50. <text :class="current == 0 ? 'tabs-active' : ''" @click="tochangetab(0)">最新</text>
  51. <text class="line">|</text>
  52. <text :class="current == 1 ? 'tabs-active' : ''" @click="tochangetab(1)">点赞最多</text>
  53. <text class="line">|</text>
  54. <text :class="current == 2 ? 'tabs-active' : ''" @click="tochangetab(2)">评论最多</text>
  55. </view>
  56. </view>
  57. <view class="list">
  58. <listinfo type="post" :data="item" v-for="(item,index) in list" :key="index"></listinfo>
  59. </view>
  60. <view class="fixed hflex acenter jcenter" @click="toadd('luntan')">
  61. <u-icon name="edit-pen-fill" color="#00b0b0" size="20"></u-icon>
  62. <text class="text">参与</text>
  63. </view>
  64. </view>
  65. </template>
  66. <script>
  67. import $api from '@/static/js/api.js'
  68. import listinfo from '@/components/list-info/index.vue'
  69. import swiperList from '@/components/swiper-list/index.vue'
  70. export default {
  71. components: {
  72. listinfo,
  73. swiperList
  74. },
  75. data() {
  76. return {
  77. show_add: false,
  78. search: '',
  79. swiper_list: [],
  80. swiper_current: 0,
  81. tuijian_list: [],
  82. list: [],
  83. page: 1,
  84. limit: 10,
  85. last_page: 1,
  86. current: 0
  87. }
  88. },
  89. onLoad() {
  90. this.getswiper()
  91. this.page = 1
  92. this.list = []
  93. this.getlist()
  94. this.tuijian_list = []
  95. this.gettuijian()
  96. },
  97. onShow() {
  98. },
  99. onReachBottom() {
  100. if (this.last_page == this.page) {
  101. uni.$u.toast('已经到底了')
  102. return
  103. } else {
  104. this.page++
  105. this.getlist()
  106. }
  107. },
  108. methods: {
  109. toinfo(item) {
  110. uni.navigateTo({
  111. url: '/pageA/topic-detail?id=' + item.id
  112. })
  113. },
  114. tochangetab(index) {
  115. this.current = index
  116. this.page = 1
  117. this.list = []
  118. this.getlist()
  119. },
  120. gettuijian() {
  121. var _this = this
  122. $api.req({
  123. url: 'topic',
  124. method: 'GET',
  125. data: {
  126. is_recommend: 1,
  127. page: 1,
  128. limit: 9,
  129. }
  130. }, function(res) {
  131. if (res.code == 10000) {
  132. var huati_list = res.data.list
  133. _this.tuijian_list = Array.from({
  134. length: Math.ceil(huati_list.length / 3)
  135. }, (_, i) => {
  136. return huati_list.slice(i * 3, i * 3 + 3);
  137. });
  138. }
  139. })
  140. },
  141. getswiper() {
  142. var _this = this
  143. $api.req({
  144. url: 'banner',
  145. method: 'GET',
  146. data: {
  147. type: 'post',
  148. limit: 5
  149. }
  150. }, function(res) {
  151. if (res.code == 10000) {
  152. _this.swiper_list = res.data
  153. }
  154. })
  155. },
  156. tomore() {
  157. uni.navigateTo({
  158. url: '/pageA/huati'
  159. })
  160. },
  161. getlist() {
  162. var _this = this
  163. var order = 'id'
  164. if (this.current == 1) {
  165. order = 'like_count'
  166. } else if (this.current == 2) {
  167. order = 'comment_count'
  168. }
  169. $api.req({
  170. url: 'post',
  171. method: 'GET',
  172. data: {
  173. page: _this.page,
  174. limit: _this.limit,
  175. order: order
  176. }
  177. }, function(res) {
  178. if (res.code == 10000) {
  179. _this.list = _this.list.concat(res.data.list)
  180. _this.last_page = res.data.last_page
  181. }
  182. })
  183. },
  184. /* 发布 */
  185. toadd(val) {
  186. if (val == 'post') {
  187. uni.navigateTo({
  188. url: '/pageA/add-luntan'
  189. })
  190. } else {
  191. uni.navigateTo({
  192. url: '/pageA/add-wenzhang?type=' + val
  193. })
  194. }
  195. this.show_add = false
  196. },
  197. /* 搜索 */
  198. tosearch() {
  199. uni.navigateTo({
  200. url: '/pageA/search'
  201. })
  202. },
  203. }
  204. }
  205. </script>
  206. <style lang="scss">
  207. .luntan-index::v-deep {
  208. background: #F5F5F5;
  209. min-height: 100vh;
  210. .fixed {
  211. position: fixed;
  212. bottom: 152rpx;
  213. left: 270rpx;
  214. z-index: 999;
  215. width: 210rpx;
  216. height: 84rpx;
  217. background: #FFFFFF;
  218. box-shadow: 0rpx 0rpx 48rpx -12rpx rgba(0, 0, 0, 0.2);
  219. border-radius: 42rpx;
  220. .text {
  221. font-size: 32rpx;
  222. color: #00B0B0;
  223. padding: 0 0 0 18rpx;
  224. line-height: 44rpx;
  225. }
  226. }
  227. .top {
  228. box-sizing: border-box;
  229. width: 100%;
  230. background: #FFFFFF;
  231. padding: 20rpx 28rpx;
  232. .title {
  233. font-size: 32rpx;
  234. font-family: PingFangSC, PingFang SC;
  235. font-weight: 500;
  236. color: #333333;
  237. padding: 24rpx 0;
  238. }
  239. .more-text {
  240. font-size: 24rpx;
  241. font-family: PingFangSC, PingFang SC;
  242. font-weight: 400;
  243. color: #666666;
  244. }
  245. .huati {
  246. padding-bottom: 36rpx;
  247. .tuijian {
  248. width: 100%;
  249. height: 248rpx;
  250. overflow: auto;
  251. height: 248rpx;
  252. white-space: nowrap;
  253. .tuijian-item {
  254. flex-shrink: 0;
  255. width: 494rpx;
  256. height: 248rpx;
  257. background: #F5F5F5;
  258. border-radius: 12rpx;
  259. margin: 0 20rpx 0 0;
  260. box-sizing: border-box;
  261. padding: 28rpx 24rpx 0;
  262. .item-box {
  263. font-size: 28rpx;
  264. color: #333333;
  265. padding: 0 0 36rpx;
  266. white-space: nowrap;
  267. }
  268. }
  269. }
  270. }
  271. .tabs {
  272. .line {
  273. padding: 0 18rpx;
  274. }
  275. text {
  276. font-size: 28rpx;
  277. font-family: PingFangSC, PingFang SC;
  278. font-weight: 400;
  279. color: rgba(34, 34, 34, .6);
  280. }
  281. .tabs-active {
  282. color: #222222 !important;
  283. }
  284. }
  285. }
  286. .search {
  287. width: 572rpx;
  288. background: rgba(255, 255, 255, .3);
  289. border-radius: 32rpx;
  290. .u-search__content {
  291. background: rgba(255, 255, 255, .3) !important;
  292. }
  293. .u-search__content__input {
  294. background-color: unset !important;
  295. }
  296. .u-search__content__icon {
  297. background-color: unset !important;
  298. .u-icon__icon {
  299. color: #fff !important;
  300. }
  301. }
  302. input {
  303. background: rgba(255, 255, 255, .3)
  304. }
  305. }
  306. .search-right {
  307. // padding: 0 32rpx 0 0;
  308. .img {
  309. position: relative;
  310. }
  311. image {
  312. width: 40rpx;
  313. height: 40rpx;
  314. margin-left: 20rpx;
  315. }
  316. .add-show {
  317. position: absolute;
  318. right: 30rpx;
  319. top: 88rpx;
  320. background: #FFFFFF;
  321. box-shadow: 0rpx 4rpx 20rpx 0rpx rgba(0, 0, 0, 0.1);
  322. padding: 42rpx 32rpx 0;
  323. .show-item {
  324. margin-bottom: 40rpx;
  325. image {
  326. width: 36rpx;
  327. height: 36rpx;
  328. margin: 0;
  329. }
  330. text {
  331. white-space: nowrap;
  332. font-size: 26rpx;
  333. font-family: PingFangSC, PingFang SC;
  334. font-weight: 400;
  335. color: #333333;
  336. padding: 0 0 0 24rpx;
  337. }
  338. }
  339. }
  340. }
  341. }
  342. </style>