luntan.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673
  1. <template>
  2. <view class="luntan-pages">
  3. <view class="luntan-header">
  4. <image class="index-bg" src="../../static/images/index-header.png" mode=""></image>
  5. <!-- <u-navbar :isBack="false" :background="{background:'rgba(0,0,0,0)'}" :border-bottom="false"
  6. :isFixed="false"> -->
  7. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true">
  8. <view id="height" class="index-header u-flex u-row-between" slot="left" style="position: relative;">
  9. <image @click="touser({uid:userinfo.id})" :src="userinfo.group_info.avatar"
  10. style="width: 64rpx ; height: 64rpx; border-radius: 50rpx;" mode=""></image>
  11. </view>
  12. <view id="height" class="index-header u-flex u-row-between" slot="right" style="position: relative;">
  13. <view class="navbar-right u-flex u-flex-1">
  14. <!-- <view class="right-icon">
  15. <u-icon name="search" size="44"></u-icon>
  16. </view> -->
  17. <view class="luntan-search u-flex">
  18. <input v-if="searchshow" style="width: 280rpx;" type="text"
  19. placeholderStyle="font-size:30rpx" placeholder="搜索你感兴趣的内容" v-model="keyword1"
  20. confirm-type="search" @input="tosearch(1)" @clear='tosearch(1)'>
  21. <u-icon @click="search_show" name="search" size="22"></u-icon>
  22. </view>
  23. <view class="right-icon" @click="toxiaoxi">
  24. <u-badge :value='number' type="error" :absolute='true' count="7" :offset="[0,8]"></u-badge>
  25. <u-icon name="bell" size="22"></u-icon>
  26. </view>
  27. </view>
  28. </view>
  29. </u-navbar>
  30. <view class="header-tabs u-flex u-col-bottom">
  31. <view class="u-flex-col u-col-center tabs-item" :class="{'tabs-item1':tabsindex == index}"
  32. v-for="(item,index) in tabs" :key="index" @click="changetabs(index)">
  33. <text>{{item}}</text>
  34. <text></text>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="luntan-list" v-if="tabsindex == 0">
  39. <view class="luntan-item" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  40. <view class="luntan-user u-flex u-row-between">
  41. <image class="user-head" :src="item.userinfo.avatar" @click.stop="touser(item)" mode=""></image>
  42. <view class="user-center u-flex-1 u-flex-col">
  43. <text>{{item.userinfo.name}}</text>
  44. <text>{{item.userinfo.company_name.name}}</text>
  45. </view>
  46. <text class="guanzhu-btn" @click.stop="guanzhu(item)">{{item.is_follow ? '已关注' : '关注'}}</text>
  47. </view>
  48. <zhao-text v-if="item.content" :text="item.content"></zhao-text>
  49. <view v-if="item.images" class="luntan-img u-flex u-flex-wrap u-row-between">
  50. <image :src="a" v-for="(a,b) in item.images.split(',')" :key="b"
  51. @click.stop="openimg(item.images.split(','),b)" mode="scaleToFill"></image>
  52. <view style="width: 210rpx;"></view>
  53. </view>
  54. <view class="quanzi-box u-flex" v-if="item.circle" @click.stop="toquanzi(item)">
  55. <image src="../../static/images/quanzi.png" mode=""></image>
  56. <text>{{item.circle.title}}</text>
  57. </view>
  58. <view class="item-down u-flex u-row-between">
  59. <view class="u-flex u-row-center down-item" @click.stop="dianzan(item)">
  60. <image v-if="item.is_like" src="../../static/images/dianzan3.png" mode=""></image>
  61. <image v-else src="../../static/images/dianzan.png" mode=""></image>
  62. <text v-if="item.is_like" class="text2">{{item.like_count}}</text>
  63. <text v-else class="text1">{{item.like_count}}</text>
  64. </view>
  65. <view class="u-flex u-row-center down-item">
  66. <image src="../../static/images/pinglun.png" mode=""></image>
  67. <text class="text1">{{item.comment_count}}</text>
  68. </view>
  69. <view class="u-flex u-row-center down-item">
  70. <image src="../../static/images/liulan.png" mode=""></image>
  71. <text class="text1">{{item.read || 0}}</text>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="quanzi-list" v-if="tabsindex == 1">
  77. <view class="quanzi-item u-flex u-row-between" v-for="(item,index) in list" :key="index"
  78. @click="toquanzi({circle_id:item.id})">
  79. <image :src="item.image" class="img" mode="aspectFill"></image>
  80. <view class="quanzi-center u-flex-col">
  81. <text>{{item.title}}</text>
  82. <text>{{item.article_count}}条内容|{{item.follow_count}}人关注</text>
  83. </view>
  84. <view class="quanzi-btn" @click.stop="guanzhuquanzi(item)">
  85. {{item.is_follow ? '已关注' : '关注'}}
  86. </view>
  87. </view>
  88. </view>
  89. <view class="quanzi-list" v-if="tabsindex == 2">
  90. <view class="quanzi-item u-flex u-row-between" v-for="(item,index) in list" :key="index"
  91. @click="touser({uid:item.uid})">
  92. <image :src="item.userinfo.avatar" class="img" style="border-radius: 100rpx;" mode="aspectFill"></image>
  93. <view class="quanzi-center u-flex-col">
  94. <text>{{item.userinfo.name}}</text>
  95. <text>{{item.userinfo.company_name.name}}</text>
  96. </view>
  97. <view class="quanzi-btn" @click.stop="quxiaoguanzhu(item)">
  98. 已关注
  99. </view>
  100. </view>
  101. </view>
  102. <view class="luntan-fabu u-flex u-row-center" @click="show = true">
  103. <image src="../../static/images/plus.png" mode=""></image>
  104. </view>
  105. <u-popup :show="show" round="28" closeable="true" mode="center" @close="show = false">
  106. <view class="fabu-luntan u-flex u-row-between">
  107. <view @click="toadd(1)" class="fabu-item u-flex-col u-col-center">
  108. <view class="fabu-img u-flex u-row-center">
  109. <image src="../../static/images/fabu1.png" mode=""></image>
  110. </view>
  111. <text class="fabu-text">发布帖子</text>
  112. </view>
  113. <view @click="toadd(2)" class="fabu-item u-flex-col u-col-center">
  114. <view class="fabu-img u-flex u-row-center">
  115. <image src="../../static/images/fabu2.png" mode=""></image>
  116. </view>
  117. <text class="fabu-text">创建圈子</text>
  118. </view>
  119. </view>
  120. </u-popup>
  121. </view>
  122. </template>
  123. <script>
  124. import {
  125. articlelist,
  126. grouplist,
  127. followuser,
  128. follow,
  129. articlelike,
  130. index,
  131. get_total_number
  132. } from "@/units/inquire.js"
  133. export default {
  134. data() {
  135. return {
  136. number: '',
  137. tabs: ['推荐', '圈子', '关注'],
  138. tabsindex: 0,
  139. show: false,
  140. page: 1,
  141. list: [],
  142. total: 0,
  143. searchshow: false,
  144. userinfo: {
  145. group_info: {}
  146. },
  147. keyword1: '',
  148. keyword: '',
  149. isshow: false
  150. }
  151. },
  152. onLoad(options) {
  153. this.get_total_number()
  154. if (options.tabsindex) {
  155. this.tabsindex = options.tabsindex
  156. }
  157. },
  158. onShow() {
  159. if (this.isshow) {
  160. this.isshow = false
  161. } else {
  162. this.page = 1
  163. this.list = []
  164. this.getlist()
  165. this.getuser()
  166. }
  167. },
  168. onReachBottom() {
  169. if (this.total != this.list.length) {
  170. this.page++
  171. this.getlist()
  172. }
  173. },
  174. methods: {
  175. get_total_number() {
  176. get_total_number().then(res => {
  177. this.number = res.data.number
  178. })
  179. },
  180. search_show() {
  181. this.searchshow = !this.searchshow
  182. },
  183. quxiaoguanzhu(item) {
  184. uni.showLoading({
  185. mask: true,
  186. title: "请稍后"
  187. })
  188. follow({
  189. type: 1,
  190. id: item.follow_id
  191. }).then(res => {
  192. this.$u.toast(res.msg)
  193. setTimeout(() => {
  194. this.tosearch()
  195. }, 800)
  196. })
  197. },
  198. guanzhuquanzi(item) {
  199. uni.showLoading({
  200. mask: true,
  201. title: "请稍后"
  202. })
  203. follow({
  204. type: 2,
  205. id: item.id
  206. }).then(res => {
  207. this.$u.toast(res.msg)
  208. if (res.code == 1) {
  209. item.is_follow = item.is_follow ? null : {}
  210. if (item.is_follow) {
  211. item.follow_count++
  212. } else {
  213. item.follow_count--
  214. }
  215. }
  216. })
  217. },
  218. openimg(urls, index) {
  219. this.isshow = true
  220. this.$openimage(urls, index)
  221. // uni.previewImage(urls, index)
  222. },
  223. changetabs(index) {
  224. this.tabsindex = index
  225. this.keyword1 = ''
  226. this.tosearch()
  227. },
  228. tosearch(type) {
  229. this.keyword = this.keyword1
  230. this.page = 1
  231. // this.list = []
  232. if (type == 1) {
  233. this.tabsindex = this.tabsindex == 2 ? 0 : this.tabsindex
  234. }
  235. this.getlist()
  236. },
  237. getuser() {
  238. index().then(res => {
  239. this.userinfo = res.data
  240. })
  241. },
  242. guanzhu(item) {
  243. uni.showLoading({
  244. mask: true,
  245. title: "请稍后"
  246. })
  247. follow({
  248. type: 1,
  249. id: item.uid
  250. }).then(res => {
  251. this.$u.toast(res.msg)
  252. if (res.code == 1) {
  253. // setTimeout(() => {
  254. this.page = 1
  255. // this.list = []
  256. this.getlist()
  257. // }, 800)
  258. }
  259. })
  260. },
  261. dianzan(item) {
  262. // uni.showLoading({
  263. // mask: true,
  264. // title: "请稍后"
  265. // })
  266. articlelike({
  267. id: item.id,
  268. }).then(res => {
  269. if (res.code == 1) {
  270. item.is_like = item.is_like ? null : {}
  271. if (item.is_like) {
  272. item.like_count++
  273. } else {
  274. item.like_count--
  275. }
  276. } else {
  277. this.$u.toast(res.msg)
  278. }
  279. })
  280. },
  281. getlist() {
  282. if (this.tabsindex == 0) {
  283. articlelist({
  284. page: this.page,
  285. keywords: this.keyword
  286. }).then(res => {
  287. this.total = res.data.total
  288. if (this.page == 1) {
  289. this.list = res.data.data
  290. } else {
  291. this.list = this.list.concat(res.data.data)
  292. }
  293. })
  294. console.log("aaa", this.list);
  295. }
  296. if (this.tabsindex == 1) {
  297. grouplist({
  298. page: this.page,
  299. keywords: this.keyword
  300. }).then(res => {
  301. this.total = res.data.total
  302. if (this.page == 1) {
  303. this.list = res.data.data
  304. } else {
  305. this.list = this.list.concat(res.data.data)
  306. }
  307. })
  308. console.log("bbb", this.list);
  309. }
  310. if (this.tabsindex == 2) {
  311. followuser({
  312. page: this.page,
  313. keywords: this.keyword
  314. }).then(res => {
  315. this.total = res.data.total
  316. if (this.page == 1) {
  317. this.list = res.data.data
  318. } else {
  319. this.list = this.list.concat(res.data.data)
  320. }
  321. })
  322. }
  323. },
  324. touser(item) {
  325. uni.navigateTo({
  326. url: "/pagesC/my-luntan?id=" + item.uid
  327. })
  328. },
  329. toquanzi(item) {
  330. uni.navigateTo({
  331. url: "/pagesC/quanzi-info?id=" + item.circle_id
  332. })
  333. },
  334. toadd(type) {
  335. if (type == 1) {
  336. uni.navigateTo({
  337. url: "/pagesC/add-luntan?type=" + 1
  338. })
  339. }
  340. if (type == 2) {
  341. uni.navigateTo({
  342. url: "/pagesC/add-quanzi"
  343. })
  344. }
  345. this.show = false
  346. },
  347. toinfo(item) {
  348. uni.navigateTo({
  349. url: "/pagesC/luntan-info?id=" + item.id
  350. })
  351. },
  352. toxiaoxi() {
  353. uni.navigateTo({
  354. url: "/pagesC/xiaoxi-list"
  355. })
  356. }
  357. }
  358. }
  359. </script>
  360. <style lang="scss">
  361. .luntan-pages {
  362. .index-header {
  363. // flex: 1;
  364. padding: 0 32rpx;
  365. height: 50rpx;
  366. }
  367. .quanzi-list {
  368. padding: 0 32rpx;
  369. background-color: #fff;
  370. .quanzi-item {
  371. padding: 28rpx 0;
  372. border-bottom: 2rpx solid #F4F4F4;
  373. .quanzi-btn {
  374. width: 112rpx;
  375. border-radius: 24rpx;
  376. border: 1rpx solid #0C66C2;
  377. text-align: center;
  378. line-height: 48rpx;
  379. font-size: 26rpx;
  380. font-family: PingFangSC-Regular, PingFang SC;
  381. font-weight: 400;
  382. color: #0C66C2;
  383. }
  384. .quanzi-center {
  385. flex: 1;
  386. margin: 0 20rpx;
  387. text:first-child {
  388. font-size: 30rpx;
  389. font-family: PingFangSC-Medium, PingFang SC;
  390. font-weight: 500;
  391. color: #222222;
  392. margin-bottom: 14rpx;
  393. }
  394. text:last-child {
  395. font-size: 22rpx;
  396. font-family: PingFangSC-Regular, PingFang SC;
  397. font-weight: 400;
  398. color: #777777;
  399. }
  400. }
  401. .img {
  402. width: 96rpx;
  403. height: 96rpx;
  404. border-radius: 10rpx;
  405. background-color: rgba(0, 0, 0, 0.1);
  406. }
  407. }
  408. }
  409. .fabu-luntan {
  410. width: 566rpx;
  411. height: 308rpx;
  412. padding: 40rpx 100rpx 0 100rpx;
  413. box-sizing: border-box;
  414. .fabu-item {
  415. .fabu-img {
  416. width: 112rpx;
  417. height: 112rpx;
  418. background: rgba(12, 102, 194, 0.1);
  419. margin-bottom: 32rpx;
  420. border-radius: 100%;
  421. image {
  422. width: 56rpx;
  423. height: 56rpx;
  424. }
  425. }
  426. .fabu-text {
  427. font-size: 28rpx;
  428. font-family: PingFangSC-Medium, PingFang SC;
  429. font-weight: 500;
  430. color: #333333;
  431. }
  432. }
  433. }
  434. .luntan-fabu {
  435. width: 96rpx;
  436. height: 96rpx;
  437. background: #0C66C2;
  438. box-shadow: 0rpx 12rpx 48rpx -20rpx #0C66C2;
  439. position: fixed;
  440. bottom: 44rpx;
  441. right: 24rpx;
  442. z-index: 10;
  443. border-radius: 100rpx;
  444. image {
  445. width: 45rpx;
  446. height: 45rpx;
  447. }
  448. }
  449. .luntan-list {
  450. padding: 20rpx 20rpx 0 24rpx;
  451. box-sizing: border-box;
  452. .luntan-item {
  453. background: #FFFFFF;
  454. border-radius: 20rpx;
  455. margin: 20rpx auto;
  456. padding: 0 20rpx;
  457. .item-down {
  458. height: 84rpx;
  459. .down-item {
  460. width: 214rpx;
  461. image {
  462. width: 33rpx;
  463. height: 33rpx;
  464. }
  465. .text1 {
  466. font-size: 26rpx;
  467. font-family: ArialMT;
  468. color: #777777;
  469. margin-left: 12rpx;
  470. }
  471. .text2 {
  472. font-size: 26rpx;
  473. font-family: ArialMT;
  474. color: #0C66C2;
  475. margin-left: 12rpx;
  476. }
  477. }
  478. }
  479. .luntan-img {
  480. margin-top: 20rpx;
  481. width: 100%;
  482. image {
  483. width: 210rpx;
  484. height: 210rpx;
  485. border-radius: 10rpx;
  486. // margin-right: 10rpx;
  487. margin-bottom: 10rpx;
  488. }
  489. }
  490. .luntan-img::after {
  491. width: 210rpx;
  492. }
  493. .quanzi-box {
  494. padding: 0 20rpx;
  495. height: 50rpx;
  496. background: #F6F6F6;
  497. border-radius: 28rpx;
  498. margin: 20rpx 0 0 0;
  499. display: inline-flex;
  500. image {
  501. width: 28rpx;
  502. height: 28rpx;
  503. }
  504. text {
  505. font-size: 24rpx;
  506. font-family: PingFangSC-Regular, PingFang SC;
  507. font-weight: 400;
  508. color: #555555;
  509. margin-left: 8rpx;
  510. }
  511. }
  512. .luntan-user {
  513. height: 130rpx;
  514. .guanzhu-btn {
  515. width: 112rpx;
  516. line-height: 48rpx;
  517. border-radius: 24rpx;
  518. border: 1rpx solid #0C66C2;
  519. text-align: center;
  520. font-size: 26rpx;
  521. font-family: PingFangSC-Regular, PingFang SC;
  522. font-weight: 400;
  523. color: #0C66C2;
  524. }
  525. .user-center {
  526. margin: 0 16rpx;
  527. min-width: 1rpx;
  528. text:first-child {
  529. font-size: 28rpx;
  530. font-family: PingFangSC-Medium, PingFang SC;
  531. font-weight: 500;
  532. color: #222222;
  533. margin-bottom: 4rpx;
  534. }
  535. text:last-child {
  536. font-size: 20rpx;
  537. font-family: PingFangSC-Regular, PingFang SC;
  538. font-weight: 400;
  539. color: #818389;
  540. }
  541. }
  542. .user-head {
  543. width: 72rpx;
  544. height: 72rpx;
  545. border-radius: 100rpx;
  546. }
  547. }
  548. }
  549. }
  550. .luntan-header {
  551. position: sticky;
  552. top: 0;
  553. left: 0;
  554. z-index: 99;
  555. background: linear-gradient(180deg, #EDF6FF 0%, #FFFFFF 100%);
  556. .index-bg {
  557. position: absolute;
  558. top: 0;
  559. left: 0;
  560. z-index: -1;
  561. width: 750rpx;
  562. height: 260rpx;
  563. }
  564. .header-tabs {
  565. height: 84rpx;
  566. .tabs-item {
  567. padding: 0 42rpx;
  568. text:first-child {
  569. font-size: 32rpx;
  570. font-family: PingFangSC-Medium, PingFang SC;
  571. font-weight: 500;
  572. color: #777777;
  573. margin-bottom: 10rpx;
  574. }
  575. text:last-child {
  576. width: 36rpx;
  577. height: 6rpx;
  578. border-radius: 4rpx;
  579. }
  580. }
  581. .tabs-item1 {
  582. text:first-child {
  583. color: #000000;
  584. }
  585. text:last-child {
  586. background-color: #0C66C2;
  587. }
  588. }
  589. }
  590. .luntan-navbar {
  591. flex: 1;
  592. padding: 0 32rpx;
  593. .navbar-right {
  594. margin-right: 80rpx;
  595. .luntan-search {
  596. height: 68rpx;
  597. background: #F3F3F3;
  598. border-radius: 20rpx;
  599. padding: 0 24rpx;
  600. // margin-left: 80rpx;
  601. input {
  602. // flex: 1;
  603. margin-left: 12rpx;
  604. font-size: 26rpx;
  605. }
  606. }
  607. .right-icon {
  608. margin-left: 22rpx;
  609. position: relative;
  610. }
  611. }
  612. }
  613. }
  614. }
  615. page {
  616. background-color: #F6F6F6;
  617. }
  618. ::v-deep .u-navbar__content__right {
  619. right: 160rpx !important;
  620. }
  621. </style>