luntan.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714
  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. if (uni.getStorageSync('token')) {
  151. this.getnum()
  152. }
  153. if (options.tabsindex) {
  154. this.tabsindex = options.tabsindex
  155. }
  156. },
  157. onShow() {
  158. if (uni.getStorageSync('token')) {
  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. this.get_total_number()
  168. } else {
  169. this.showmodel()
  170. }
  171. },
  172. onReachBottom() {
  173. if (this.total != this.list.length) {
  174. this.page++
  175. this.getlist()
  176. }
  177. },
  178. methods: {
  179. showmodel() {
  180. uni.showModal({
  181. title: '提示',
  182. content: '请登录',
  183. success: function(res) {
  184. if (res.confirm) {
  185. uni.reLaunch({
  186. url: '/pages/login/login'
  187. });
  188. } else if (res.cancel) {
  189. console.log('用户点击取消');
  190. }
  191. }
  192. });
  193. },
  194. getnum() {
  195. cget_total_number().then((res) => {
  196. if (res.data.number > 0) {
  197. uni.showTabBarRedDot({
  198. index: 3,
  199. success(res) {
  200. console.log(res);
  201. }
  202. })
  203. }
  204. })
  205. },
  206. get_total_number() {
  207. get_total_number().then(res => {
  208. this.number = res.data.number
  209. })
  210. },
  211. search_show() {
  212. this.searchshow = !this.searchshow
  213. },
  214. quxiaoguanzhu(item) {
  215. uni.showLoading({
  216. mask: true,
  217. title: "请稍后"
  218. })
  219. follow({
  220. type: 1,
  221. id: item.follow_id
  222. }).then(res => {
  223. this.$u.toast(res.msg)
  224. setTimeout(() => {
  225. this.tosearch()
  226. }, 800)
  227. })
  228. },
  229. guanzhuquanzi(item) {
  230. uni.showLoading({
  231. mask: true,
  232. title: "请稍后"
  233. })
  234. follow({
  235. type: 2,
  236. id: item.id
  237. }).then(res => {
  238. this.$u.toast(res.msg)
  239. if (res.code == 1) {
  240. item.is_follow = item.is_follow ? null : {}
  241. if (item.is_follow) {
  242. item.follow_count++
  243. } else {
  244. item.follow_count--
  245. }
  246. }
  247. })
  248. },
  249. openimg(urls, index) {
  250. this.isshow = true
  251. this.$openimage(urls, index)
  252. // uni.previewImage(urls, index)
  253. },
  254. changetabs(index) {
  255. this.tabsindex = index
  256. this.keyword1 = ''
  257. this.tosearch()
  258. },
  259. tosearch(type) {
  260. this.keyword = this.keyword1
  261. this.page = 1
  262. // this.list = []
  263. if (type == 1) {
  264. this.tabsindex = this.tabsindex == 2 ? 0 : this.tabsindex
  265. }
  266. this.getlist()
  267. },
  268. getuser() {
  269. index().then(res => {
  270. this.userinfo = res.data
  271. })
  272. },
  273. guanzhu(item) {
  274. uni.showLoading({
  275. mask: true,
  276. title: "请稍后"
  277. })
  278. follow({
  279. type: 1,
  280. id: item.uid
  281. }).then(res => {
  282. this.$u.toast(res.msg)
  283. if (res.code == 1) {
  284. // setTimeout(() => {
  285. this.page = 1
  286. // this.list = []
  287. this.getlist()
  288. // }, 800)
  289. }
  290. })
  291. },
  292. dianzan(item) {
  293. // uni.showLoading({
  294. // mask: true,
  295. // title: "请稍后"
  296. // })
  297. articlelike({
  298. id: item.id,
  299. }).then(res => {
  300. if (res.code == 1) {
  301. item.is_like = item.is_like ? null : {}
  302. if (item.is_like) {
  303. item.like_count++
  304. this.get_total_number()
  305. } else {
  306. item.like_count--
  307. }
  308. } else {
  309. this.$u.toast(res.msg)
  310. }
  311. })
  312. },
  313. getlist() {
  314. if (this.tabsindex == 0) {
  315. articlelist({
  316. page: this.page,
  317. keywords: this.keyword
  318. }).then(res => {
  319. this.total = res.data.total
  320. if (this.page == 1) {
  321. this.list = res.data.data
  322. } else {
  323. this.list = this.list.concat(res.data.data)
  324. }
  325. })
  326. console.log("aaa", this.list);
  327. }
  328. if (this.tabsindex == 1) {
  329. grouplist({
  330. page: this.page,
  331. keywords: this.keyword
  332. }).then(res => {
  333. this.total = res.data.total
  334. if (this.page == 1) {
  335. this.list = res.data.data
  336. } else {
  337. this.list = this.list.concat(res.data.data)
  338. }
  339. })
  340. console.log("bbb", this.list);
  341. }
  342. if (this.tabsindex == 2) {
  343. followuser({
  344. page: this.page,
  345. keywords: this.keyword
  346. }).then(res => {
  347. this.total = res.data.total
  348. if (this.page == 1) {
  349. this.list = res.data.data
  350. } else {
  351. this.list = this.list.concat(res.data.data)
  352. }
  353. })
  354. }
  355. },
  356. touser(item) {
  357. uni.navigateTo({
  358. url: "/pagesC/my-luntan?id=" + item.uid
  359. })
  360. },
  361. toquanzi(item) {
  362. uni.navigateTo({
  363. url: "/pagesC/quanzi-info?id=" + item.circle_id
  364. })
  365. },
  366. toadd(type) {
  367. if (uni.getStorageSync('token')) {
  368. if (type == 1) {
  369. uni.navigateTo({
  370. url: "/pagesC/add-luntan?type=" + 1
  371. })
  372. }
  373. if (type == 2) {
  374. uni.navigateTo({
  375. url: "/pagesC/add-quanzi"
  376. })
  377. }
  378. } else {
  379. this.showmodel()
  380. }
  381. this.show = false
  382. },
  383. toinfo(item) {
  384. uni.navigateTo({
  385. url: "/pagesC/luntan-info?id=" + item.id
  386. })
  387. },
  388. toxiaoxi() {
  389. if (uni.getStorageSync('token')) {
  390. uni.navigateTo({
  391. url: "/pagesC/xiaoxi-list"
  392. })
  393. } else {
  394. this.showmodel()
  395. }
  396. }
  397. }
  398. }
  399. </script>
  400. <style lang="scss">
  401. .luntan-pages {
  402. .index-header {
  403. // flex: 1;
  404. padding: 0 32rpx;
  405. height: 50rpx;
  406. }
  407. .quanzi-list {
  408. padding: 0 32rpx;
  409. background-color: #fff;
  410. .quanzi-item {
  411. padding: 28rpx 0;
  412. border-bottom: 2rpx solid #F4F4F4;
  413. .quanzi-btn {
  414. width: 112rpx;
  415. border-radius: 24rpx;
  416. border: 1rpx solid #0C66C2;
  417. text-align: center;
  418. line-height: 48rpx;
  419. font-size: 26rpx;
  420. font-family: PingFangSC-Regular, PingFang SC;
  421. font-weight: 400;
  422. color: #0C66C2;
  423. }
  424. .quanzi-center {
  425. flex: 1;
  426. margin: 0 20rpx;
  427. text:first-child {
  428. font-size: 30rpx;
  429. font-family: PingFangSC-Medium, PingFang SC;
  430. font-weight: 500;
  431. color: #222222;
  432. margin-bottom: 14rpx;
  433. }
  434. text:last-child {
  435. font-size: 22rpx;
  436. font-family: PingFangSC-Regular, PingFang SC;
  437. font-weight: 400;
  438. color: #777777;
  439. }
  440. }
  441. .img {
  442. width: 96rpx;
  443. height: 96rpx;
  444. border-radius: 10rpx;
  445. background-color: rgba(0, 0, 0, 0.1);
  446. }
  447. }
  448. }
  449. .fabu-luntan {
  450. width: 566rpx;
  451. height: 308rpx;
  452. padding: 40rpx 100rpx 0 100rpx;
  453. box-sizing: border-box;
  454. .fabu-item {
  455. .fabu-img {
  456. width: 112rpx;
  457. height: 112rpx;
  458. background: rgba(12, 102, 194, 0.1);
  459. margin-bottom: 32rpx;
  460. border-radius: 100%;
  461. image {
  462. width: 56rpx;
  463. height: 56rpx;
  464. }
  465. }
  466. .fabu-text {
  467. font-size: 28rpx;
  468. font-family: PingFangSC-Medium, PingFang SC;
  469. font-weight: 500;
  470. color: #333333;
  471. }
  472. }
  473. }
  474. .luntan-fabu {
  475. width: 96rpx;
  476. height: 96rpx;
  477. background: #0C66C2;
  478. box-shadow: 0rpx 12rpx 48rpx -20rpx #0C66C2;
  479. position: fixed;
  480. bottom: 44rpx;
  481. right: 24rpx;
  482. z-index: 10;
  483. border-radius: 100rpx;
  484. image {
  485. width: 45rpx;
  486. height: 45rpx;
  487. }
  488. }
  489. .luntan-list {
  490. padding: 0rpx 20rpx 0 24rpx;
  491. box-sizing: border-box;
  492. .luntan-item {
  493. background: #FFFFFF;
  494. border-radius: 20rpx;
  495. margin: 20rpx auto;
  496. padding: 0 20rpx;
  497. .item-down {
  498. height: 84rpx;
  499. .down-item {
  500. width: 214rpx;
  501. image {
  502. width: 33rpx;
  503. height: 33rpx;
  504. }
  505. .text1 {
  506. font-size: 26rpx;
  507. font-family: ArialMT;
  508. color: #777777;
  509. margin-left: 12rpx;
  510. }
  511. .text2 {
  512. font-size: 26rpx;
  513. font-family: ArialMT;
  514. color: #0C66C2;
  515. margin-left: 12rpx;
  516. }
  517. }
  518. }
  519. .luntan-img {
  520. margin-top: 20rpx;
  521. width: 100%;
  522. image {
  523. width: 210rpx;
  524. height: 210rpx;
  525. border-radius: 10rpx;
  526. // margin-right: 10rpx;
  527. margin-bottom: 10rpx;
  528. }
  529. }
  530. .luntan-img::after {
  531. width: 210rpx;
  532. }
  533. .quanzi-box {
  534. padding: 0 20rpx;
  535. height: 50rpx;
  536. background: #F6F6F6;
  537. border-radius: 28rpx;
  538. margin: 20rpx 0 0 0;
  539. display: inline-flex;
  540. image {
  541. width: 28rpx;
  542. height: 28rpx;
  543. }
  544. text {
  545. font-size: 24rpx;
  546. font-family: PingFangSC-Regular, PingFang SC;
  547. font-weight: 400;
  548. color: #555555;
  549. margin-left: 8rpx;
  550. }
  551. }
  552. .luntan-user {
  553. height: 130rpx;
  554. .guanzhu-btn {
  555. width: 112rpx;
  556. line-height: 48rpx;
  557. border-radius: 24rpx;
  558. border: 1rpx solid #0C66C2;
  559. text-align: center;
  560. font-size: 26rpx;
  561. font-family: PingFangSC-Regular, PingFang SC;
  562. font-weight: 400;
  563. color: #0C66C2;
  564. }
  565. .user-center {
  566. margin: 0 16rpx;
  567. min-width: 1rpx;
  568. text:first-child {
  569. font-size: 28rpx;
  570. font-family: PingFangSC-Medium, PingFang SC;
  571. font-weight: 500;
  572. color: #222222;
  573. margin-bottom: 4rpx;
  574. }
  575. text:last-child {
  576. font-size: 20rpx;
  577. font-family: PingFangSC-Regular, PingFang SC;
  578. font-weight: 400;
  579. color: #818389;
  580. }
  581. }
  582. .user-head {
  583. width: 72rpx;
  584. height: 72rpx;
  585. border-radius: 100rpx;
  586. }
  587. }
  588. }
  589. }
  590. .luntan-header {
  591. position: sticky;
  592. top: 0;
  593. left: 0;
  594. z-index: 99;
  595. background: linear-gradient(180deg, #EDF6FF 0%, #FFFFFF 100%);
  596. overflow: hidden;
  597. .index-bg {
  598. position: absolute;
  599. top: 0;
  600. left: 0;
  601. z-index: -1;
  602. width: 750rpx;
  603. // height: 260rpx;
  604. }
  605. .header-tabs {
  606. height: 84rpx;
  607. .tabs-item {
  608. padding: 0 42rpx;
  609. text:first-child {
  610. font-size: 32rpx;
  611. font-family: PingFangSC-Medium, PingFang SC;
  612. font-weight: 500;
  613. color: #777777;
  614. margin-bottom: 10rpx;
  615. }
  616. text:last-child {
  617. width: 36rpx;
  618. height: 6rpx;
  619. border-radius: 4rpx;
  620. }
  621. }
  622. .tabs-item1 {
  623. text:first-child {
  624. color: #000000;
  625. }
  626. text:last-child {
  627. background-color: #0C66C2;
  628. }
  629. }
  630. }
  631. .luntan-navbar {
  632. flex: 1;
  633. padding: 0 32rpx;
  634. .navbar-right {
  635. margin-right: 80rpx;
  636. .luntan-search {
  637. height: 68rpx;
  638. background: #F3F3F3;
  639. border-radius: 20rpx;
  640. padding: 0 24rpx;
  641. // margin-left: 80rpx;
  642. input {
  643. // flex: 1;
  644. margin-left: 12rpx;
  645. font-size: 26rpx;
  646. }
  647. }
  648. .right-icon {
  649. margin-left: 22rpx;
  650. position: relative;
  651. }
  652. }
  653. }
  654. }
  655. }
  656. page {
  657. background-color: #F6F6F6;
  658. }
  659. ::v-deep .u-navbar__content__right {
  660. right: 160rpx !important;
  661. }
  662. </style>