my-luntan.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  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||0}}人关注</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||0}}条内容|{{item.follow_count||0}}人关注</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. <u-popup :show="del_show" mode="bottom" :round="28" :safe-area-inset-bottom="true">
  114. <view class="del" @click="del1">删除</view>
  115. <view class="cancel" @click="close">取消</view>
  116. </u-popup>
  117. </view>
  118. </template>
  119. <script>
  120. import {
  121. articlelike,
  122. homepagearticle,
  123. followgrouplist,
  124. usergrouplist,
  125. others_homepage,
  126. del_article,
  127. del_group
  128. } from "@/units/inquire.js"
  129. export default {
  130. data() {
  131. return {
  132. id: '',
  133. current: 1,
  134. type: 1,
  135. userinfo: {
  136. userinfo: {
  137. company_name: {}
  138. }
  139. },
  140. page: 1,
  141. list: [],
  142. total: 0,
  143. user_id: '',
  144. page1: 1,
  145. list1: [],
  146. total1: 0,
  147. isshow: false,
  148. del_show: false,
  149. del_id: '',
  150. }
  151. },
  152. onLoad(option) {
  153. this.id = option.id
  154. this.user_id = uni.getStorageSync("user_id")
  155. },
  156. onShow() {
  157. this.getuser()
  158. if (this.isshow) {
  159. this.isshow = false
  160. } else {
  161. if (this.current == 1) {
  162. this.page = 1
  163. this.list = []
  164. } else {
  165. this.page1 = 1
  166. this.list1 = []
  167. }
  168. this.getlist()
  169. }
  170. },
  171. onReachBottom() {
  172. if (this.current == 1) {
  173. if (this.total != this.list.length) {
  174. this.page++
  175. this.getlist()
  176. }
  177. } else {
  178. if (this.total1 != this.list1.length) {
  179. this.page1++
  180. this.getlist()
  181. }
  182. }
  183. },
  184. methods: {
  185. close() {
  186. this.del_show = false
  187. },
  188. del(item) {
  189. this.del_show = true
  190. this.del_id = item.id
  191. },
  192. del1() {
  193. let _this = this
  194. uni.showModal({
  195. title: "确定删除吗",
  196. content: "内容删除后将无法恢复,请谨慎考虑",
  197. cancelText: '我再想想',
  198. confirmText: '确定删除',
  199. confirmColor: '#0C66C2',
  200. success: (e) => {
  201. if (e.confirm) {
  202. del_group({
  203. id: _this.del_id
  204. }).then((res) => {
  205. _this.$u.toast(res.msg)
  206. _this.del_show = false
  207. _this.del_item = {}
  208. _this.page1 = 1
  209. _this.list1 = []
  210. _this.getlist()
  211. })
  212. } else {
  213. _this.close
  214. }
  215. }
  216. })
  217. },
  218. return1() {
  219. uni.navigateBack()
  220. },
  221. toquanzi(item) {
  222. uni.navigateTo({
  223. url: "/pagesC/quanzi-info?id=" + item.id
  224. })
  225. },
  226. openimg(urls, index) {
  227. this.isshow = true
  228. this.$openimage(urls, index)
  229. },
  230. changetype(type) {
  231. this.type = type
  232. this.page1 = 1
  233. this.list1 = []
  234. this.getlist()
  235. },
  236. changecurrent(current) {
  237. this.current = current
  238. if (this.current == 1) {
  239. this.page = 1
  240. this.list = []
  241. } else {
  242. this.page1 = 1
  243. this.list1 = []
  244. }
  245. this.getlist()
  246. },
  247. dianzan(item) {
  248. uni.showLoading({
  249. mask: true,
  250. title: "请稍后"
  251. })
  252. articlelike({
  253. id: item.id
  254. }).then(res => {
  255. if (res.code == 1) {
  256. item.is_like = item.is_like ? null : {}
  257. if (item.is_like) {
  258. item.like_count++
  259. } else {
  260. item.like_count--
  261. }
  262. } else {
  263. this.$u.toast(res.msg)
  264. }
  265. })
  266. },
  267. touser() {
  268. uni.navigateTo({
  269. url: "../pagesD/personal-infor"
  270. })
  271. },
  272. getlist() {
  273. if (this.current == 1) {
  274. homepagearticle({
  275. id: this.id,
  276. page: this.page
  277. }).then(res => {
  278. this.total = res.data.total
  279. this.list = this.list.concat(res.data.data)
  280. })
  281. } else {
  282. if (this.type == 1) {
  283. followgrouplist({
  284. page: this.page1,
  285. id: this.id
  286. }).then(res => {
  287. this.total1 = res.data.total
  288. this.list1 = this.list1.concat(res.data.data)
  289. })
  290. } else {
  291. usergrouplist({
  292. page: this.page1,
  293. id: this.id
  294. }).then(res => {
  295. this.total1 = res.data.total
  296. this.list1 = this.list1.concat(res.data.data)
  297. })
  298. }
  299. }
  300. },
  301. getuser() {
  302. others_homepage({
  303. id: this.id,
  304. page: this.page,
  305. page_num: 20
  306. }).then(res => {
  307. this.userinfo = res.data
  308. })
  309. },
  310. open(item) {
  311. uni.showActionSheet({
  312. itemList: ['删除'],
  313. success: (e) => {
  314. if (e.tapIndex == 0) {
  315. del_article({
  316. id: item.id
  317. }).then(res => {
  318. this.$u.toast(res.msg)
  319. if (res.code == 1) {
  320. setTimeout(() => {
  321. this.page = 1
  322. this.list = []
  323. this.getlist()
  324. }, 800)
  325. }
  326. })
  327. }
  328. }
  329. })
  330. },
  331. toinfo(item) {
  332. uni.navigateTo({
  333. url: "/pagesC/luntan-info?id=" + item.id
  334. })
  335. },
  336. }
  337. }
  338. </script>
  339. <style lang="scss">
  340. .del {
  341. font-size: 32rpx;
  342. font-family: PingFangSC, PingFang SC;
  343. font-weight: 500;
  344. color: #333333;
  345. padding: 46rpx 0 30rpx;
  346. text-align: center;
  347. width: 100%;
  348. border-bottom: 16rpx solid #f6f6f6;
  349. }
  350. .cancel {
  351. font-size: 32rpx;
  352. font-family: PingFangSC, PingFang SC;
  353. font-weight: 400;
  354. color: #333333;
  355. text-align: center;
  356. width: 100%;
  357. padding: 40rpx 0;
  358. }
  359. .my-luntan {
  360. position: relative;
  361. .luntan-list {
  362. .quanzi-item {
  363. padding: 32rpx 0;
  364. border-bottom: 2rpx solid #F4F4F4;
  365. .item-img {
  366. width: 84rpx;
  367. height: 84rpx;
  368. border-radius: 10rpx;
  369. }
  370. .quanzi-center {
  371. margin: 0 20rpx;
  372. .text1 {
  373. font-size: 32rpx;
  374. font-family: PingFangSC-Medium, PingFang SC;
  375. font-weight: 500;
  376. color: #222222;
  377. }
  378. .img {
  379. width: 24rpx;
  380. height: 24rpx;
  381. margin-left: 12rpx;
  382. }
  383. .text2 {
  384. margin-top: 8rpx;
  385. font-size: 22rpx;
  386. font-family: PingFangSC-Regular, PingFang SC;
  387. font-weight: 400;
  388. color: #777777;
  389. }
  390. }
  391. }
  392. .quanzi-type {
  393. padding: 30rpx 0 8rpx 0;
  394. text {
  395. width: 156rpx;
  396. line-height: 64rpx;
  397. background: #F0F0F0;
  398. border-radius: 32rpx;
  399. text-align: center;
  400. margin-right: 44rpx;
  401. font-size: 28rpx;
  402. font-family: PingFangSC-Regular, PingFang SC;
  403. font-weight: 400;
  404. color: #444444;
  405. }
  406. .text {
  407. background-color: #0C66C2;
  408. color: #fff;
  409. }
  410. }
  411. .luntan-item {
  412. background: #FFFFFF;
  413. border-radius: 20rpx;
  414. padding: 0 32rpx;
  415. .item-down {
  416. height: 84rpx;
  417. .down-item {
  418. width: 214rpx;
  419. image {
  420. width: 33rpx;
  421. height: 33rpx;
  422. }
  423. .text1 {
  424. font-size: 26rpx;
  425. font-family: ArialMT;
  426. color: #777777;
  427. margin-left: 12rpx;
  428. }
  429. }
  430. }
  431. .luntan-img {
  432. margin-top: 20rpx;
  433. width: 100%;
  434. image {
  435. width: 210rpx;
  436. height: 210rpx;
  437. border-radius: 10rpx;
  438. // margin-right: 10rpx;
  439. margin-bottom: 10rpx;
  440. }
  441. }
  442. .luntan-img::after {
  443. width: 210rpx;
  444. }
  445. .luntan-user {
  446. height: 130rpx;
  447. .guanzhu-btn {
  448. width: 112rpx;
  449. line-height: 48rpx;
  450. border-radius: 24rpx;
  451. border: 1rpx solid #0C66C2;
  452. text-align: center;
  453. font-size: 26rpx;
  454. font-family: PingFangSC-Regular, PingFang SC;
  455. font-weight: 400;
  456. color: #0C66C2;
  457. }
  458. .user-center {
  459. margin: 0 16rpx;
  460. min-width: 1rpx;
  461. text:first-child {
  462. font-size: 28rpx;
  463. font-family: PingFangSC-Medium, PingFang SC;
  464. font-weight: 500;
  465. color: #222222;
  466. margin-bottom: 4rpx;
  467. }
  468. text:last-child {
  469. font-size: 20rpx;
  470. font-family: PingFangSC-Regular, PingFang SC;
  471. font-weight: 400;
  472. color: #818389;
  473. }
  474. }
  475. .user-head {
  476. width: 72rpx;
  477. height: 72rpx;
  478. border-radius: 100rpx;
  479. }
  480. }
  481. }
  482. .list-header {
  483. padding: 0 32rpx;
  484. height: 108rpx;
  485. border-bottom: 2rpx solid #F4F4F4;
  486. text {
  487. font-size: 32rpx;
  488. font-family: PingFangSC-Semibold, PingFang SC;
  489. font-weight: 600;
  490. color: #666666;
  491. margin-right: 88rpx;
  492. }
  493. .text {
  494. color: #222222;
  495. }
  496. }
  497. }
  498. .my-luntan-header {
  499. padding: 0 32rpx;
  500. width: 750rpx;
  501. height: 288rpx;
  502. background: #FFFFFF;
  503. border-radius: 32rpx 32rpx 0rpx 0rpx;
  504. margin-top: 88rpx;
  505. box-sizing: border-box;
  506. .user-zhiye {
  507. .text3 {
  508. width: 172rpx;
  509. line-height: 56rpx;
  510. border-radius: 32rpx;
  511. border: 1rpx solid #0C66C2;
  512. text-align: center;
  513. font-size: 26rpx;
  514. font-family: PingFangSC-Regular, PingFang SC;
  515. font-weight: 400;
  516. color: #0C66C2;
  517. }
  518. .text1 {
  519. font-size: 44rpx;
  520. font-family: PingFangSC-Medium, PingFang SC;
  521. font-weight: 500;
  522. color: #222222;
  523. margin-bottom: 12rpx;
  524. }
  525. .text2 {
  526. font-size: 26rpx;
  527. font-family: PingFangSC-Regular, PingFang SC;
  528. font-weight: 400;
  529. color: #666666;
  530. }
  531. }
  532. .header-right {
  533. .right-item {
  534. margin-left: 84rpx;
  535. text:first-child {
  536. font-size: 40rpx;
  537. font-family: DINAlternate-Bold, DINAlternate;
  538. font-weight: bold;
  539. color: #333333;
  540. margin-bottom: 8rpx;
  541. }
  542. text:last-child {
  543. font-size: 24rpx;
  544. font-family: PingFangSC-Regular, PingFang SC;
  545. font-weight: 400;
  546. color: #666666;
  547. }
  548. }
  549. }
  550. .header-img {
  551. width: 136rpx;
  552. height: 136rpx;
  553. border-radius: 100%;
  554. border: 4rpx solid #FFFFFF;
  555. }
  556. }
  557. .my-luntan-bg {
  558. position: absolute;
  559. top: 0;
  560. left: 0;
  561. width: 750rpx;
  562. height: 396rpx;
  563. z-index: -1;
  564. }
  565. }
  566. </style>