luntan-info.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. <template>
  2. <view class="luntan-info">
  3. <u-navbar @leftClick="rightClick" :safeAreaInsetTop='true' :placeholder='true'>
  4. </u-navbar>
  5. <view class="luntan-top">
  6. <view class="top-user u-flex u-row-between">
  7. <image class="user-head" @click="touser" :src="detail.userinfo.avatar" mode=""></image>
  8. <view class="user-center u-flex-1 u-flex-col">
  9. <text>{{detail.userinfo.name || ''}}</text>
  10. <text>{{detail.userinfo.company_name ? detail.userinfo.company_name.name : ''}}</text>
  11. </view>
  12. <text class="guanzhu-btn" @click="guanzhu(detail)">{{detail.is_follow ? '已关注' : '关注'}}</text>
  13. </view>
  14. <view class="luntan-text">
  15. {{detail.content || ''}}
  16. </view>
  17. <view class="luntan-img u-flex u-row-between u-flex-wrap" v-if="detail.images">
  18. <image :src="a" v-for="(a,b) in detail.images.split(',')" :key="b"
  19. @click="$openimage(detail.images.split(','),b)" mode="aspectFill"></image>
  20. <view style="width: 214rpx;"></view>
  21. </view>
  22. <view class="quanzi-box u-flex" v-if="detail.circle" @click="toquanzi">
  23. <image src="../static/images/quanzi.png" mode=""></image>
  24. <text>{{detail.circle.title}}</text>
  25. </view>
  26. <view class="top-down u-flex">
  27. <text>{{detail.createtime || ''}}</text>
  28. <text>{{detail.read || 0}}阅读</text>
  29. </view>
  30. </view>
  31. <u-gap height="20" bg-color="#F6F6F6"></u-gap>
  32. <view class="luntan-pinglun">
  33. <view class="pinglun-title">
  34. 评论 {{pinglunlist.length}}
  35. </view>
  36. <view class="pinglun-item u-flex u-col-top" v-for="(item,index) in pinglunlist" :key="index">
  37. <image class="user-img" :src="item.userinfo.avatar" mode=""></image>
  38. <view class="pinglun-right u-flex-1">
  39. <view class="pinglun-user u-flex u-row-between">
  40. <view class="pinglun-user-center u-flex-1 u-flex-col">
  41. <text>{{item.userinfo.name || '暂无昵称'}}</text>
  42. <text>{{item.userinfo.company_name.name}}</text>
  43. </view>
  44. <view class="pinglun-dianzan u-flex" @click="dianzanpinglun(item)">
  45. <image v-if="item.user_is_like == 0" src="../static/images/dianzan.png" mode=""></image>
  46. <image v-else src="../static/images/dianzan3.png" mode=""></image>
  47. <text :style="{color:item.user_is_like == 0 ? '#777777' : '#0C66C2'}">{{item.like}}</text>
  48. </view>
  49. </view>
  50. <view class="pinglun-text">
  51. {{item.content}}
  52. </view>
  53. <view class="pinglun-time u-flex">
  54. <text>{{$u.timeFrom(new Date(item.createtime.replace(/-/g, "/")).getTime())}}</text>
  55. <text @click="huifuitem(item)">回复</text>
  56. </view>
  57. <view v-if="item.children && item.children.length > 0">
  58. <view v-if="b<2||item.show" class="pinglun-item u-flex u-col-top" v-for="(a,b) in item.children"
  59. :key="b">
  60. <image class="user-img" :src="a.userinfo.avatar" mode=""></image>
  61. <view class="pinglun-right u-flex-1">
  62. <view class="pinglun-user u-flex u-row-between">
  63. <view class="pinglun-user-center u-flex-1 u-flex-col u-row-center">
  64. <text>{{a.userinfo.name}}</text>
  65. <text>{{a.userinfo.company_name.name}}</text>
  66. </view>
  67. <view class="pinglun-dianzan u-flex" @click="dianzanpinglun(a)">
  68. <image v-if="a.user_is_like == 0" src="../static/images/dianzan.png" mode="">
  69. </image>
  70. <image v-else src="../static/images/dianzan3.png" mode=""></image>
  71. <text
  72. :style="{color:a.user_is_like == 0 ? '#777777' : '#0C66C2'}">{{a.like}}</text>
  73. </view>
  74. </view>
  75. <view class="pinglun-text">
  76. {{a.content}}
  77. </view>
  78. <view class="pinglun-time u-flex">
  79. <text>{{$u.timeFrom(new Date(a.createtime.replace(/-/g, "/")).getTime())}}</text>
  80. <!-- <text>回复</text> -->
  81. </view>
  82. </view>
  83. </view>
  84. <view class="u-flex" v-if="item.children.length>2&&!item.show">
  85. <view class="huifu" @click="gengduo(item)">展开更多回复</view>
  86. <u-icon name="arrow-down-fill" color="#0C66C2" size="8"></u-icon>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </view>
  92. <view style="height: 120rpx;"></view>
  93. <view class="safe-area-inset-bottom"></view>
  94. <view class="pinglun-input">
  95. <view class="pingnum-down-btn u-flex u-row-between">
  96. <text class="input" @click="showinput = true">发表一下你的想法….</text>
  97. <view class="u-flex-col u-col-center btn-item">
  98. <image src="../static/images/pinglun.png" style="width: 40rpx;height: 40rpx;" mode=""></image>
  99. <text> {{total_count}}</text>
  100. </view>
  101. <view class="u-flex-col u-col-center btn-item" @click="dianzan(detail)">
  102. <image v-if="detail.is_like" src="../static/images/dianzan3.png" mode=""
  103. style="width: 40rpx;height: 40rpx;"></image>
  104. <image v-else src="../static/images/dianzan.png" mode="" style="width: 40rpx;height: 40rpx;">
  105. </image>
  106. <text>{{detail.like_count || 0}}</text>
  107. </view>
  108. </view>
  109. <view class="safe-area-inset-bottom"></view>
  110. </view>
  111. <view class="huifu-input u-flex-col u-row-right" v-if="showinput" @click="showinput = false">
  112. <input @click.stop type="text" :focus="showinput" v-model="content" @confirm="huifu"
  113. :adjust-position="false" placeholder="回复" confirm-type="send" :confirm-hold="true">
  114. <view :style="{height:inputheight + 'px'}"></view>
  115. </view>
  116. </view>
  117. </template>
  118. <script>
  119. import {
  120. commentlike,
  121. articlelike,
  122. follow,
  123. articlecomment,
  124. readcomment,
  125. articledetails
  126. } from "@/units/inquire.js"
  127. export default {
  128. data() {
  129. return {
  130. showinput: false,
  131. inputheight: 0,
  132. id: 0,
  133. detail: {
  134. userinfo: {}
  135. },
  136. pinglunlist: [],
  137. content: '',
  138. page: 1,
  139. total: 0,
  140. total_count: 0,
  141. pinglundetail: {}
  142. }
  143. },
  144. onLoad(option) {
  145. this.id = option.id
  146. this.getdetail()
  147. this.getpinglun()
  148. uni.onKeyboardHeightChange(e => {
  149. this.inputheight = e.height
  150. if (e.height == 0) {
  151. this.showinput = false
  152. }
  153. })
  154. },
  155. onReachBottom() {
  156. if (this.pinglunlist.length != this.total) {
  157. this.page++
  158. this.getpinglun()
  159. }
  160. },
  161. methods: {
  162. gengduo(item) {
  163. item.show = true
  164. // console.log('pinglunlist',this.pinglunlist);
  165. },
  166. rightClick() {
  167. uni.switchTab({
  168. url: '/pages/luntan/luntan'
  169. })
  170. },
  171. dianzanpinglun(item) {
  172. // uni.showLoading({
  173. // mask: true,
  174. // title: '请稍后'
  175. // })
  176. commentlike({
  177. id: item.id
  178. }).then(res => {
  179. if (res.code == 1) {
  180. item.user_is_like = item.user_is_like == 0 ? 1 : 0
  181. if (item.user_is_like == 1) {
  182. item.like++
  183. } else {
  184. item.like--
  185. }
  186. }
  187. })
  188. },
  189. toquanzi() {
  190. uni.navigateTo({
  191. url: "/pagesC/quanzi-info?id=" + this.detail.circle_id
  192. })
  193. },
  194. touser() {
  195. uni.navigateTo({
  196. url: "/pagesC/my-luntan?id=" + this.detail.uid
  197. })
  198. },
  199. guanzhu(item) {
  200. uni.showLoading({
  201. mask: true,
  202. title: "请稍后"
  203. })
  204. follow({
  205. type: 1,
  206. id: item.uid
  207. }).then(res => {
  208. this.$u.toast(res.msg)
  209. if (res.code == 1) {
  210. this.detail.is_follow = this.detail.is_follow ? null : {}
  211. }
  212. })
  213. },
  214. dianzan(item) {
  215. // uni.showLoading({
  216. // mask: true,
  217. // title: "请稍后"
  218. // })
  219. articlelike({
  220. id: this.id
  221. }).then(res => {
  222. if (res.code == 1) {
  223. item.is_like = item.is_like ? null : {}
  224. if (item.is_like) {
  225. item.like_count++
  226. } else {
  227. item.like_count--
  228. }
  229. } else {
  230. this.$u.toast(res.msg)
  231. }
  232. })
  233. },
  234. huifuitem(item) {
  235. this.pinglundetail = item
  236. this.showinput = true
  237. },
  238. huifu() {
  239. if (!this.content) {
  240. this.$u.toast("请输入内容")
  241. return
  242. }
  243. uni.showLoading({
  244. mask: true,
  245. title: "请稍后"
  246. })
  247. articlecomment({
  248. id: this.id,
  249. content: this.content,
  250. comment_id: this.pinglundetail.id
  251. }).then(res => {
  252. this.$u.toast(res.msg)
  253. if (res.code == 1) {
  254. this.pinglundetail = {}
  255. this.content = ''
  256. this.showinput = false
  257. setTimeout(() => {
  258. this.page = 1
  259. this.pinglunlist = []
  260. this.getpinglun()
  261. }, 800)
  262. }
  263. })
  264. },
  265. getpinglun() {
  266. readcomment({
  267. id: Number(this.id),
  268. start_loca: this.page,
  269. is_all: 1
  270. }).then(res => {
  271. this.total = res.data.total
  272. this.total_count = res.data.total_count
  273. // this.pinglunlist = this.pinglunlist.concat(res.data.data)
  274. res.data.data.forEach(item => {
  275. item.show = false
  276. this.pinglunlist.push(item)
  277. })
  278. console.log("this.pinglunlist", this.pinglunlist);
  279. })
  280. },
  281. getdetail() {
  282. articledetails({
  283. id: this.id
  284. }).then(res => {
  285. this.detail = res.data
  286. })
  287. }
  288. }
  289. }
  290. </script>
  291. <style lang="scss">
  292. .huifu {
  293. font-size: 24rpx;
  294. font-family: PingFangSC, PingFang SC;
  295. font-weight: 400;
  296. color: #0C66C2;
  297. margin-left: 80rpx;
  298. margin-right: 12rpx;
  299. }
  300. .luntan-info {
  301. .huifu-input {
  302. position: fixed;
  303. top: 0;
  304. left: 0;
  305. width: 750rpx;
  306. height: 100vh;
  307. z-index: 999;
  308. background-color: rgba(0, 0, 0, 0.5);
  309. input {
  310. width: 750rpx;
  311. box-sizing: border-box;
  312. height: 124rpx;
  313. padding: 0 32rpx;
  314. font-size: 30rpx;
  315. border-radius: 28rpx 28rpx 0 0;
  316. background-color: #fff;
  317. }
  318. }
  319. .pinglun-input {
  320. position: fixed;
  321. bottom: 0;
  322. z-index: 99;
  323. left: 0;
  324. background-color: #fff;
  325. box-shadow: 0rpx 0rpx 0rpx 0.4rpx rgba(0, 0, 0, 0.05);
  326. width: 750rpx;
  327. .pingnum-down-btn {
  328. padding: 20rpx 32rpx;
  329. .btn-item {
  330. image {
  331. width: 40rpx;
  332. height: 40rpx;
  333. margin-bottom: 6rpx;
  334. }
  335. text {
  336. font-size: 20rpx;
  337. font-family: ArialMT;
  338. color: #777777;
  339. }
  340. }
  341. .input {
  342. width: 494rpx;
  343. line-height: 68rpx;
  344. background: #F6F6F6;
  345. border-radius: 38rpx;
  346. font-size: 28rpx;
  347. font-family: PingFangSC-Regular, PingFang SC;
  348. font-weight: 400;
  349. color: #B8B8B8;
  350. padding: 0 32rpx;
  351. }
  352. }
  353. }
  354. .luntan-pinglun {
  355. padding: 0 32rpx;
  356. .pinglun-item {
  357. .pinglun-right {
  358. .pinglun-time {
  359. margin-bottom: 28rpx;
  360. text:first-child {
  361. font-size: 24rpx;
  362. font-family: PingFangSC-Regular, PingFang SC;
  363. font-weight: 400;
  364. color: #777777;
  365. margin-right: 24rpx;
  366. }
  367. text:nth-child(2) {
  368. font-size: 24rpx;
  369. font-family: PingFangSC-Regular, PingFang SC;
  370. font-weight: 400;
  371. color: #222222;
  372. }
  373. }
  374. .pinglun-text {
  375. padding: 0 36rpx 0 0;
  376. font-size: 28rpx;
  377. font-family: PingFangSC-Regular, PingFang SC;
  378. font-weight: 400;
  379. color: #333333;
  380. margin-bottom: 20rpx;
  381. }
  382. .pinglun-user {
  383. margin-bottom: 24rpx;
  384. .pinglun-dianzan {
  385. image {
  386. width: 32rpx;
  387. height: 32rpx;
  388. margin-right: 4rpx;
  389. }
  390. text {
  391. font-size: 24rpx;
  392. font-family: ArialMT;
  393. }
  394. }
  395. .pinglun-user-center {
  396. height: 68rpx;
  397. text:first-child {
  398. font-size: 28rpx;
  399. font-family: PingFangSC-Medium, PingFang SC;
  400. font-weight: 500;
  401. color: #222222;
  402. }
  403. text:nth-child(2) {
  404. font-size: 20rpx;
  405. font-family: PingFangSC-Regular, PingFang SC;
  406. font-weight: 400;
  407. color: #818389;
  408. }
  409. }
  410. }
  411. }
  412. .user-img {
  413. width: 68rpx;
  414. height: 68rpx;
  415. border-radius: 100rpx;
  416. margin-right: 16rpx;
  417. }
  418. }
  419. .pinglun-title {
  420. font-size: 32rpx;
  421. font-family: PingFangSC-Medium, PingFang SC;
  422. font-weight: 500;
  423. color: #222222;
  424. line-height: 112rpx;
  425. }
  426. }
  427. .luntan-top {
  428. padding: 0 32rpx;
  429. .top-down {
  430. height: 82rpx;
  431. font-size: 24rpx;
  432. font-family: ArialMT;
  433. color: #888888;
  434. text {
  435. margin-right: 32rpx;
  436. }
  437. }
  438. .quanzi-box {
  439. height: 50rpx;
  440. background: #F6F6F6;
  441. border-radius: 28rpx;
  442. padding: 0 20rpx;
  443. display: inline-flex;
  444. image {
  445. width: 28rpx;
  446. height: 28rpx;
  447. margin-right: 8rpx;
  448. }
  449. text {
  450. font-size: 24rpx;
  451. font-family: PingFangSC-Regular, PingFang SC;
  452. font-weight: 400;
  453. color: #555555;
  454. }
  455. }
  456. .luntan-img {
  457. image {
  458. width: 214rpx;
  459. height: 214rpx;
  460. margin-bottom: 20rpx;
  461. border-radius: 12rpx;
  462. }
  463. }
  464. .luntan-text {
  465. font-size: 30rpx;
  466. font-family: PingFangSC-Regular, PingFang SC;
  467. font-weight: 400;
  468. color: #333333;
  469. margin-bottom: 20rpx;
  470. }
  471. .top-user {
  472. height: 130rpx;
  473. .user-head {
  474. width: 72rpx;
  475. height: 72rpx;
  476. border-radius: 100rpx;
  477. }
  478. .guanzhu-btn {
  479. width: 112rpx;
  480. line-height: 48rpx;
  481. border-radius: 24rpx;
  482. border: 1rpx solid #0C66C2;
  483. text-align: center;
  484. font-size: 26rpx;
  485. font-family: PingFangSC-Regular, PingFang SC;
  486. font-weight: 400;
  487. color: #0C66C2;
  488. }
  489. .user-center {
  490. margin: 0 16rpx;
  491. text:first-child {
  492. font-size: 28rpx;
  493. font-family: PingFangSC-Medium, PingFang SC;
  494. font-weight: 500;
  495. color: #222222;
  496. margin-bottom: 4rpx;
  497. }
  498. text:last-child {
  499. font-size: 20rpx;
  500. font-family: PingFangSC-Regular, PingFang SC;
  501. font-weight: 400;
  502. color: #818389;
  503. }
  504. }
  505. }
  506. }
  507. }
  508. </style>