my-luntan.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571
  1. <template>
  2. <view class="my-luntan">
  3. <image src="./static/weitu.png" class="my-luntan-bg" mode="aspectFill"></image>
  4. <!-- <u-navbar :background="{background:'rgba(0,0,0,0)'}" :isFixed="false" :border-bottom="false"></u-navbar> -->
  5. <u-navbar leftIconColor="#fff" :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true"
  6. @leftClick="return1"></u-navbar>
  7. <view class="my-luntan-header">
  8. <view class="u-flex u-col-bottom u-row-between" style="position: relative;top: -24rpx;">
  9. <image :src="userinfo.userinfo.avatar" class="header-img" mode=""></image>
  10. <view class="header-right u-flex u-flex-1 u-row-right">
  11. <view class="u-flex-col u-col-center right-item">
  12. <text>{{userinfo.host_follow_count || 0}}</text>
  13. <text>{{user_id == userinfo.id ? '我的关注' : 'Ta的关注'}}</text>
  14. </view>
  15. <view class="u-flex-col u-col-center right-item">
  16. <text>{{userinfo.quilt_follow_count || 0}}</text>
  17. <text>{{user_id == userinfo.id ? '关注我的' : '关注Ta的'}}</text>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="user-zhiye u-flex u-row-between">
  22. <view class="u-flex-col">
  23. <text class="text1">{{userinfo.userinfo.name || ''}}</text>
  24. <text class="text2">{{userinfo.userinfo.job || ''}}</text>
  25. </view>
  26. <text class="text3" v-if="user_id == userinfo.id" @click="touser">编辑资料</text>
  27. </view>
  28. </view>
  29. <u-gap height="20" bg-color="#F6F6F6"></u-gap>
  30. <view class="luntan-list">
  31. <view class="list-header u-flex">
  32. <text :class="{text:current == 1}" @click="changecurrent(1)">动态·{{total}}</text>
  33. <text :class="{text:current == 2}" @click="changecurrent(2)">圈子</text>
  34. </view>
  35. <view v-if="current == 1">
  36. <view v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  37. <view class="luntan-item">
  38. <view class="luntan-user u-flex u-row-between">
  39. <image class="user-head" :src="userinfo.userinfo.avatar" mode=""></image>
  40. <view class="user-center u-flex-1 u-flex-col">
  41. <text>{{userinfo.userinfo.name}}</text>
  42. <text>{{userinfo.userinfo.job}}</text>
  43. </view>
  44. <view @click.stop="open(item)" v-if="user_id == userinfo.id">
  45. <u-icon name="more-dot-fill" size="18"></u-icon>
  46. </view>
  47. </view>
  48. <zhao-text :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="aspectFill"></image>
  52. <view style="width: 210rpx;"></view>
  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 class="text1"
  59. :style="{color:item.is_like?'#0C66C2':'#777'}">{{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. <u-gap height="20" bg-color="#F6F6F6"></u-gap>
  72. </view>
  73. </view>
  74. <view v-if="current == 2" style="padding: 0 32rpx;">
  75. <view class="quanzi-type u-flex">
  76. <text :class="{text:type == 1}"
  77. @click="changetype(1)">{{user_id == userinfo.id ? '我的' : 'Ta的'}}关注</text>
  78. <text :class="{text:type == 2}"
  79. @click="changetype(2)">{{user_id == userinfo.id ? '我的' : 'Ta的'}}创建</text>
  80. </view>
  81. <view v-if="type == 1">
  82. <view class="quanzi-item u-flex u-row-between" v-for="(item,index) in list1" :key="index"
  83. @click="toquanzi({id:item.group.id})">
  84. <image :src="item.group.image" class="item-img" mode="aspectFill"></image>
  85. <view class="quanzi-center u-flex-1 u-flex-col">
  86. <view class="u-flex">
  87. <text class="text1">{{item.group.title}}</text>
  88. </view>
  89. <text class="text2">{{item.article_count}}条内容|{{item.group.follow_count}}人关注</text>
  90. </view>
  91. <u-icon name="arrow-right" color="rgba(76, 76, 76, 0.4)"></u-icon>
  92. </view>
  93. </view>
  94. <view v-else>
  95. <view class="quanzi-item u-flex u-row-between" v-for="(item,index) in list1" :key="index"
  96. @click="toquanzi({id:item.id})">
  97. <image :src="item.image" class="item-img" mode="aspectFill"></image>
  98. <view class="quanzi-center u-flex-1 u-flex-col">
  99. <view class="u-flex">
  100. <text class="text1">{{item.title}}</text>
  101. <!-- <image class="img" v-if="user_id == userinfo.id" src="static/quanzi-edit.png" mode=""></image> -->
  102. </view>
  103. <text class="text2">{{item.article_count}}条内容|{{item.follow_count}}人关注</text>
  104. </view>
  105. <view @click.stop="del(item)" class="" v-if="user_id == userinfo.id">
  106. <u-icon name="more-dot-fill" color="rgba(76, 76, 76, 0.4)"></u-icon>
  107. </view>
  108. <u-icon v-else name="arrow-right" color="rgba(76, 76, 76, 0.4)"></u-icon>
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. </view>
  114. </template>
  115. <script>
  116. import {
  117. articlelike,
  118. homepagearticle,
  119. followgrouplist,
  120. usergrouplist,
  121. others_homepage,
  122. del_article,
  123. del_group
  124. } from "@/units/inquire.js"
  125. export default {
  126. data() {
  127. return {
  128. id: '',
  129. current: 1,
  130. type: 1,
  131. userinfo: {
  132. userinfo: {
  133. company_name: {}
  134. }
  135. },
  136. page: 1,
  137. list: [],
  138. total: 0,
  139. user_id: '',
  140. page1: 1,
  141. list1: [],
  142. total1: 0,
  143. isshow: false
  144. }
  145. },
  146. onLoad(option) {
  147. this.id = option.id
  148. this.user_id = uni.getStorageSync("user_id")
  149. },
  150. onShow() {
  151. this.getuser()
  152. if (this.isshow) {
  153. this.isshow = false
  154. } else {
  155. if (this.current == 1) {
  156. this.page = 1
  157. this.list = []
  158. } else {
  159. this.page1 = 1
  160. this.list1 = []
  161. }
  162. this.getlist()
  163. }
  164. },
  165. onReachBottom() {
  166. if (this.current == 1) {
  167. if (this.total != this.list.length) {
  168. this.page++
  169. this.getlist()
  170. }
  171. } else {
  172. if (this.total1 != this.list1.length) {
  173. this.page1++
  174. this.getlist()
  175. }
  176. }
  177. },
  178. methods: {
  179. del(item) {
  180. uni.showActionSheet({
  181. itemList: ['删除'],
  182. success: (e) => {
  183. if (e.tapIndex == 0) {
  184. del_group({
  185. id: item.id
  186. }).then(res => {
  187. this.$u.toast(res.msg)
  188. if (res.code == 1) {
  189. setTimeout(() => {
  190. this.page = 1
  191. this.list1 = []
  192. this.usergrouplist()
  193. }, 800)
  194. }
  195. })
  196. }
  197. }
  198. })
  199. },
  200. return1() {
  201. uni.navigateBack()
  202. },
  203. toquanzi(item) {
  204. uni.navigateTo({
  205. url: "/pagesC/quanzi-info?id=" + item.id
  206. })
  207. },
  208. openimg(urls, index) {
  209. this.isshow = true
  210. this.$openimage(urls, index)
  211. },
  212. changetype(type) {
  213. this.type = type
  214. this.page1 = 1
  215. this.list1 = []
  216. this.getlist()
  217. },
  218. changecurrent(current) {
  219. this.current = current
  220. if (this.current == 1) {
  221. this.page = 1
  222. this.list = []
  223. } else {
  224. this.page1 = 1
  225. this.list1 = []
  226. }
  227. this.getlist()
  228. },
  229. dianzan(item) {
  230. uni.showLoading({
  231. mask: true,
  232. title: "请稍后"
  233. })
  234. articlelike({
  235. id: item.id
  236. }).then(res => {
  237. if (res.code == 1) {
  238. item.is_like = item.is_like ? null : {}
  239. if (item.is_like) {
  240. item.like_count++
  241. } else {
  242. item.like_count--
  243. }
  244. } else {
  245. this.$u.toast(res.msg)
  246. }
  247. })
  248. },
  249. touser() {
  250. uni.navigateTo({
  251. url: "/pagesD/userinfo"
  252. })
  253. },
  254. getlist() {
  255. if (this.current == 1) {
  256. homepagearticle({
  257. id: this.id,
  258. page: this.page
  259. }).then(res => {
  260. this.total = res.data.total
  261. this.list = this.list.concat(res.data.data)
  262. })
  263. } else {
  264. if (this.type == 1) {
  265. followgrouplist({
  266. page: this.page1,
  267. id: this.id
  268. }).then(res => {
  269. this.total1 = res.data.total
  270. this.list1 = this.list1.concat(res.data.data)
  271. })
  272. } else {
  273. usergrouplist({
  274. page: this.page1,
  275. id: this.id
  276. }).then(res => {
  277. this.total1 = res.data.total
  278. this.list1 = this.list1.concat(res.data.data)
  279. })
  280. }
  281. }
  282. },
  283. getuser() {
  284. others_homepage({
  285. id: this.id,
  286. page: this.page,
  287. page_num: 20
  288. }).then(res => {
  289. this.userinfo = res.data
  290. })
  291. },
  292. open(item) {
  293. uni.showActionSheet({
  294. itemList: ['删除'],
  295. success: (e) => {
  296. if (e.tapIndex == 0) {
  297. del_article({
  298. id: item.id
  299. }).then(res => {
  300. this.$u.toast(res.msg)
  301. if (res.code == 1) {
  302. setTimeout(() => {
  303. this.page = 1
  304. this.list = []
  305. this.getlist()
  306. }, 800)
  307. }
  308. })
  309. }
  310. }
  311. })
  312. },
  313. toinfo(item) {
  314. uni.navigateTo({
  315. url: "/pagesC/luntan-info?id=" + item.id
  316. })
  317. },
  318. }
  319. }
  320. </script>
  321. <style lang="scss">
  322. .my-luntan {
  323. position: relative;
  324. .luntan-list {
  325. .quanzi-item {
  326. padding: 32rpx 0;
  327. border-bottom: 2rpx solid #F4F4F4;
  328. .item-img {
  329. width: 84rpx;
  330. height: 84rpx;
  331. border-radius: 10rpx;
  332. }
  333. .quanzi-center {
  334. margin: 0 20rpx;
  335. .text1 {
  336. font-size: 32rpx;
  337. font-family: PingFangSC-Medium, PingFang SC;
  338. font-weight: 500;
  339. color: #222222;
  340. }
  341. .img {
  342. width: 24rpx;
  343. height: 24rpx;
  344. margin-left: 12rpx;
  345. }
  346. .text2 {
  347. margin-top: 8rpx;
  348. font-size: 22rpx;
  349. font-family: PingFangSC-Regular, PingFang SC;
  350. font-weight: 400;
  351. color: #777777;
  352. }
  353. }
  354. }
  355. .quanzi-type {
  356. padding: 30rpx 0 8rpx 0;
  357. text {
  358. width: 156rpx;
  359. line-height: 64rpx;
  360. background: #F0F0F0;
  361. border-radius: 32rpx;
  362. text-align: center;
  363. margin-right: 44rpx;
  364. font-size: 28rpx;
  365. font-family: PingFangSC-Regular, PingFang SC;
  366. font-weight: 400;
  367. color: #444444;
  368. }
  369. .text {
  370. background-color: #0C66C2;
  371. color: #fff;
  372. }
  373. }
  374. .luntan-item {
  375. background: #FFFFFF;
  376. border-radius: 20rpx;
  377. padding: 0 32rpx;
  378. .item-down {
  379. height: 84rpx;
  380. .down-item {
  381. width: 214rpx;
  382. image {
  383. width: 33rpx;
  384. height: 33rpx;
  385. }
  386. .text1 {
  387. font-size: 26rpx;
  388. font-family: ArialMT;
  389. color: #777777;
  390. margin-left: 12rpx;
  391. }
  392. }
  393. }
  394. .luntan-img {
  395. margin-top: 20rpx;
  396. width: 100%;
  397. image {
  398. width: 210rpx;
  399. height: 210rpx;
  400. border-radius: 10rpx;
  401. // margin-right: 10rpx;
  402. margin-bottom: 10rpx;
  403. }
  404. }
  405. .luntan-img::after {
  406. width: 210rpx;
  407. }
  408. .luntan-user {
  409. height: 130rpx;
  410. .guanzhu-btn {
  411. width: 112rpx;
  412. line-height: 48rpx;
  413. border-radius: 24rpx;
  414. border: 1rpx solid #0C66C2;
  415. text-align: center;
  416. font-size: 26rpx;
  417. font-family: PingFangSC-Regular, PingFang SC;
  418. font-weight: 400;
  419. color: #0C66C2;
  420. }
  421. .user-center {
  422. margin: 0 16rpx;
  423. min-width: 1rpx;
  424. text:first-child {
  425. font-size: 28rpx;
  426. font-family: PingFangSC-Medium, PingFang SC;
  427. font-weight: 500;
  428. color: #222222;
  429. margin-bottom: 4rpx;
  430. }
  431. text:last-child {
  432. font-size: 20rpx;
  433. font-family: PingFangSC-Regular, PingFang SC;
  434. font-weight: 400;
  435. color: #818389;
  436. }
  437. }
  438. .user-head {
  439. width: 72rpx;
  440. height: 72rpx;
  441. border-radius: 100rpx;
  442. }
  443. }
  444. }
  445. .list-header {
  446. padding: 0 32rpx;
  447. height: 108rpx;
  448. border-bottom: 2rpx solid #F4F4F4;
  449. text {
  450. font-size: 32rpx;
  451. font-family: PingFangSC-Semibold, PingFang SC;
  452. font-weight: 600;
  453. color: #666666;
  454. margin-right: 88rpx;
  455. }
  456. .text {
  457. color: #222222;
  458. }
  459. }
  460. }
  461. .my-luntan-header {
  462. padding: 0 32rpx;
  463. width: 750rpx;
  464. height: 288rpx;
  465. background: #FFFFFF;
  466. border-radius: 32rpx 32rpx 0rpx 0rpx;
  467. margin-top: 88rpx;
  468. box-sizing: border-box;
  469. .user-zhiye {
  470. .text3 {
  471. width: 172rpx;
  472. line-height: 56rpx;
  473. border-radius: 32rpx;
  474. border: 1rpx solid #0C66C2;
  475. text-align: center;
  476. font-size: 26rpx;
  477. font-family: PingFangSC-Regular, PingFang SC;
  478. font-weight: 400;
  479. color: #0C66C2;
  480. }
  481. .text1 {
  482. font-size: 44rpx;
  483. font-family: PingFangSC-Medium, PingFang SC;
  484. font-weight: 500;
  485. color: #222222;
  486. margin-bottom: 12rpx;
  487. }
  488. .text2 {
  489. font-size: 26rpx;
  490. font-family: PingFangSC-Regular, PingFang SC;
  491. font-weight: 400;
  492. color: #666666;
  493. }
  494. }
  495. .header-right {
  496. .right-item {
  497. margin-left: 84rpx;
  498. text:first-child {
  499. font-size: 40rpx;
  500. font-family: DINAlternate-Bold, DINAlternate;
  501. font-weight: bold;
  502. color: #333333;
  503. margin-bottom: 8rpx;
  504. }
  505. text:last-child {
  506. font-size: 24rpx;
  507. font-family: PingFangSC-Regular, PingFang SC;
  508. font-weight: 400;
  509. color: #666666;
  510. }
  511. }
  512. }
  513. .header-img {
  514. width: 136rpx;
  515. height: 136rpx;
  516. border-radius: 100%;
  517. border: 4rpx solid #FFFFFF;
  518. }
  519. }
  520. .my-luntan-bg {
  521. position: absolute;
  522. top: 0;
  523. left: 0;
  524. width: 750rpx;
  525. height: 396rpx;
  526. z-index: -1;
  527. }
  528. }
  529. </style>