luntan.vue 15 KB

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