search.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. <template>
  2. <view class="content">
  3. <view class="top2">
  4. <u-navbar title=" " placeholder autoBack >
  5. <view class="u-nav-slot" slot="right">
  6. <u-search shape="square" v-model="keyword" :clearabled="true" :showAction="false" @search="tosearch" @clear="show = true"></u-search>
  7. <!-- <u-input v-model="keyword" prefixIcon="search" border="none" clearable></u-input> -->
  8. </view>
  9. </u-navbar>
  10. </view>
  11. <view class="center" v-if="show">
  12. <view class="title">热门话题</view>
  13. <view class="hot-list hflex acenter fwrap">
  14. <view class="hot-item" v-for="(item,index) in hotlist" :key="index">{{item.title}}</view>
  15. </view>
  16. </view>
  17. <view class="center" v-else>
  18. <view class="tabs hflex acenter">
  19. <u-sticky bgColor="#fff" offset-top="88" customNavHeight="44" zIndex="99">
  20. <u-tabs :list="tabs" lineWidth="0" @click="tochangetabs" :scrollable="true" :current="current"
  21. :inactiveStyle="{color: '#666666',fontSize: '30rpx',}"
  22. :activeStyle="{color: '#00B0B0',fontWeight: 'bold',fontSize: '32rpx',}"></u-tabs>
  23. </u-sticky>
  24. </view>
  25. <swiper class="index-swiper" :circular="false" :autoplay="false" :current="current" @change="swipertotabs">
  26. <swiper-item>
  27. <view class="swiper-item">
  28. <view class="top">
  29. <view class="vflex" v-if="video_list.length>0">
  30. <view class="hflex acenter jbetween">
  31. <view class="title">精选视频</view>
  32. <view class="more-text">查看更多</view>
  33. </view>
  34. <view class="videos hflex acenter" >
  35. <video-list :type="video" :item="item" v-for="(item,index) in video_list" :key="index" @toinfo="toinfo(item)"></video-list>
  36. </view>
  37. </view>
  38. <view class="vflex" v-if="zixun_list.length>0">
  39. <view class="title">精选资讯</view>
  40. <view class="vflex">
  41. <wenzhang-info :type="info" :data="item" v-for="(item,index) in zixun_list.slice(0,3)" :key="index" @toinfo="toinfo(item)"></wenzhang-info>
  42. <view class="more-btn">查看更多资讯</view>
  43. </view>
  44. </view>
  45. <view class="vflex" v-if="wenzhang_list.length>0">
  46. <view class="hflex acenter jbetween">
  47. <view class="title">精选文章</view>
  48. <view class="more-text">查看更多</view>
  49. </view>
  50. <wenzhang-info :type="article" :data="item" v-for="(item,index) in wenzhang_list.slice(0,3)" :key="index" @toinfo="toinfo(item)"></wenzhang-info>
  51. </view>
  52. <view class="vflex" v-if="user_list.length>0">
  53. <view class="hflex acenter jbetween">
  54. <view class="title">用户</view>
  55. <view class="more-text">查看更多</view>
  56. </view>
  57. <view class="user-list">
  58. <u-cell-group :border="false">
  59. <u-cell size="large" :border="false" isLink v-for="(item,index) in user_list" :key="index">
  60. <view class="user hflex acenter" slot="title">
  61. <image :src="item.avatar" mode="aspectFill" @click="touser(item)"></image>
  62. <view class="vflex name">
  63. <text>{{item.username}}</text>
  64. <text>{{item.introduction}}</text>
  65. </view>
  66. </view>
  67. </u-cell>
  68. </u-cell-group>
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. </swiper-item>
  74. <!-- 资讯 -->
  75. <swiper-item>
  76. <view class="swiper-item">
  77. <view class="list1" v-if="list.length>0">
  78. <wenzhangInfo :type="info" :data="item" v-for="(item,index) in list" :key="index" @toinfo="toinfo(item)"></wenzhangInfo>
  79. </view>
  80. <view v-else class="empty">
  81. <u-empty mode="data"></u-empty>
  82. </view>
  83. </view>
  84. </swiper-item>
  85. <!-- 文章 -->
  86. <swiper-item>
  87. <view class="swiper-item">
  88. <view class="list1" v-if="list.length>0">
  89. <wenzhangInfo :type="article" :data="item" v-for="(item,index) in list" :key="index" @toinfo="toinfo(item)"></wenzhangInfo>
  90. </view>
  91. <view v-else class="empty">
  92. <u-empty mode="data"></u-empty>
  93. </view>
  94. </view>
  95. </swiper-item>
  96. <!-- 视频 -->
  97. <swiper-item>
  98. <view class="swiper-item">
  99. <view class="list1" v-if="list.length>0">
  100. <wenzhangInfo :type="video" :data="item" v-for="(item,index) in list" :key="index" @toinfo="toinfo(item)"></wenzhangInfo>
  101. </view>
  102. <view v-else class="empty">
  103. <u-empty mode="data"></u-empty>
  104. </view>
  105. </view>
  106. </swiper-item>
  107. <!-- 论坛 -->
  108. <swiper-item>
  109. <view class="swiper-item" v-if="list.length>0">
  110. <list-info :type="post" :data="item" v-for="(item,index) in list" :key="index" @toinfo="toinfo(item)"></list-info>
  111. </view>
  112. <view v-else class="empty">
  113. <u-empty mode="data"></u-empty>
  114. </view>
  115. </swiper-item>
  116. <!-- 用户 -->
  117. <swiper-item>
  118. <view class="swiper-item">
  119. <view class="user-list" v-if="list.length>0">
  120. <u-cell-group :border="false">
  121. <u-cell size="large" :border="false" isLink v-for="(item,index) in list" :key="index">
  122. <view class="user hflex acenter" slot="title">
  123. <image :src="item.avatar" mode="aspectFill" @click="touser(item)"></image>
  124. <view class="vflex name">
  125. <text>{{item.username}}</text>
  126. <text>{{item.introduction}}</text>
  127. </view>
  128. </view>
  129. </u-cell>
  130. </u-cell-group>
  131. </view>
  132. <view v-else class="empty">
  133. <u-empty mode="data"></u-empty>
  134. </view>
  135. </view>
  136. </swiper-item>
  137. </swiper>
  138. </view>
  139. </view>
  140. </template>
  141. <script>
  142. import listInfo from '@/components/list-info/index.vue'
  143. import wenzhangInfo from '@/components/wenzhang-info/index.vue'
  144. import $api from '@/static/js/api.js'
  145. export default {
  146. components: {
  147. listInfo,
  148. wenzhangInfo,
  149. },
  150. data() {
  151. return {
  152. keyword: '',
  153. hotlist: [],
  154. tabs: [
  155. {
  156. id: 'all',
  157. name: '综合'
  158. },
  159. {
  160. id: 'info',
  161. name: '资讯'
  162. },
  163. {
  164. id: 'article',
  165. name: '文章'
  166. },
  167. {
  168. id: 'video',
  169. name: '视频'
  170. },
  171. {
  172. id: 'post',
  173. name: '论坛'
  174. },
  175. {
  176. id: 'user',
  177. name: '用户'
  178. },
  179. ],
  180. scrollable: false,
  181. current: 0,
  182. list: [],
  183. video_list: [],
  184. wenzhang_list: [],
  185. zixun_list:[],
  186. user_list: [],
  187. page: 1,
  188. last_page: 1,
  189. show: true
  190. }
  191. },
  192. onLoad() {
  193. this.gethot()
  194. },
  195. onShow() {
  196. },
  197. onPullDownRefresh() {
  198. },
  199. onReachBottom() {
  200. if(this.page == this.last_page) {
  201. uni.$u.toast('已经到底了')
  202. return
  203. } else {
  204. this.page++
  205. this.tosearch()
  206. }
  207. },
  208. methods: {
  209. touser(item) {
  210. uni.navigateTo({
  211. url: '/pageC/otherInfo?id=' + item.id
  212. })
  213. },
  214. tosearch() {
  215. var _this = this
  216. _this.show = false
  217. $api.req({
  218. url: 'summary',
  219. method: 'GET',
  220. data: {
  221. page: _this.page,
  222. limit: 10,
  223. is_page: _this.current != 0 ? 1 : 0,
  224. source_type: _this.current != 0 ? _this.tabs[_this.current].id : '',
  225. type: _this.current == 0 ? 'group' : 'single',
  226. title: _this.keyword,
  227. }
  228. }, function(res) {
  229. if(res.code == 10000) {
  230. if(_this.current == 0) {
  231. _this.wenzhang_list = res.data.article
  232. _this.zixun_list = res.data.info
  233. _this.user_list = res.data.user
  234. _this.video_list = res.data.video
  235. } else {
  236. _this.list = _this.list.concat(res.data.list)
  237. _this.last_page = res.data.last_page
  238. }
  239. }
  240. })
  241. },
  242. /* 滑动切换tabs */
  243. swipertotabs(e) {
  244. this.current = e.detail.current
  245. this.page = 1
  246. this.last_page = 1
  247. this.list = []
  248. this.video_list = []
  249. this.wenzhang_list = []
  250. this.zixun_list = []
  251. this.user_list = []
  252. this.tosearch()
  253. },
  254. /* 点击切换tabs */
  255. tochangetabs(item) {
  256. console.log(item);
  257. this.current = item.index
  258. },
  259. gethot() {
  260. var _this = this
  261. $api.req({
  262. url: 'topic',
  263. method: 'GET',
  264. data: {
  265. limit:6,
  266. is_page: 0,
  267. is_recommend: 1
  268. }
  269. }, function(res) {
  270. if(res.code == 10000) {
  271. _this.hotlist = res.data
  272. }
  273. })
  274. },
  275. }
  276. }
  277. </script>
  278. <style lang="scss">
  279. .content::v-deep {
  280. background: #FFFFFF;
  281. padding: 36rpx 24rpx;
  282. .center {
  283. .top {
  284. padding: 20rpx 28rpx 24rpx;
  285. margin-bottom: 20rpx;
  286. background: #fff;
  287. .videos {
  288. width: 100%;
  289. overflow: auto;
  290. // white-space: nowrap;
  291. }
  292. .title {
  293. font-size: 32rpx;
  294. font-family: PingFangSC, PingFang SC;
  295. font-weight: 500;
  296. color: #333333;
  297. padding: 24rpx 0;
  298. }
  299. .more-btn {
  300. width: 100%;
  301. font-size: 26rpx;
  302. font-family: PingFangSC, PingFang SC;
  303. font-weight: 400;
  304. color: #666666;
  305. background: #F5F5F5;
  306. border-radius: 12rpx;
  307. padding: 22rpx 0;
  308. text-align: center;
  309. }
  310. .more-text {
  311. font-size: 24rpx;
  312. font-family: PingFangSC, PingFang SC;
  313. font-weight: 400;
  314. color: #666666;
  315. }
  316. .circle-item {
  317. // width: 100%;
  318. background: #F1F4F4;
  319. border-radius: 12rpx;
  320. padding: 26rpx 0 26rpx 36rpx;
  321. margin: 0 0 20rpx;
  322. .circle-img {
  323. width: 40rpx;
  324. height: 40rpx;
  325. }
  326. .circle-text {
  327. font-size: 28rpx;
  328. font-family: AppleColorEmoji;
  329. color: #666666;
  330. }
  331. }
  332. }
  333. .list1 {
  334. .list-title {
  335. width: 100%;
  336. background: #fff;
  337. font-size: 32rpx;
  338. font-family: PingFangSC, PingFang SC;
  339. font-weight: 500;
  340. color: #333333;
  341. padding: 32rpx 0 20rpx 28rpx;
  342. }
  343. }
  344. .tabs {
  345. position: fixed;
  346. top: 144rpx;
  347. width: 100%;
  348. padding: 28rpx;
  349. background: #fff;
  350. z-index: 9;
  351. border-bottom: 1px solid #eee;
  352. .u-tabs__wrapper__nav__item {
  353. padding: 0 66rpx 0 0 !important;
  354. }
  355. }
  356. .index-swiper {
  357. padding: 144rpx 0 0;
  358. min-height: calc(100vh - 88rpx);
  359. height: 1rpx;
  360. .swiper-item {
  361. height: 100%;
  362. overflow: auto;
  363. .user-list {
  364. .user {
  365. image {
  366. width: 80rpx;
  367. height: 80rpx;
  368. border-radius: 50%;
  369. margin-right: 20rpx;
  370. }
  371. }
  372. .name {
  373. text:first-child {
  374. font-size: 28rpx;
  375. font-family: PingFangSC, PingFang SC;
  376. font-weight: 500;
  377. color: #333333;
  378. }
  379. text:last-child {
  380. font-size: 22rpx;
  381. font-family: PingFangSC, PingFang SC;
  382. font-weight: 400;
  383. color: #999999;
  384. padding-top: 8rpx;
  385. }
  386. }
  387. }
  388. }
  389. }
  390. // padding-top: 36rpx;
  391. .title {
  392. font-size: 28rpx;
  393. font-family: PingFangSC, PingFang SC;
  394. font-weight: 600;
  395. color: #333333;
  396. padding-bottom: 28rpx;
  397. }
  398. .hot-list {
  399. width: 100%;
  400. .hot-item {
  401. background: #F5F5F5;
  402. border-radius: 8rpx;
  403. box-sizing: border-box;
  404. padding: 10rpx 20rpx;
  405. margin: 0 20rpx 24rpx 0;
  406. }
  407. }
  408. }
  409. .top2 {
  410. .u-nav-slot {
  411. width: 642rpx;
  412. .u-search {
  413. width: 642rpx;
  414. height: 64rpx;
  415. background: #F5F5F5;
  416. border-radius: 12rpx;
  417. padding: 0 20rpx !important;
  418. box-sizing: border-box;
  419. }
  420. }
  421. }
  422. }
  423. </style>