my-luntan.vue 15 KB

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