luntan-info.vue 12 KB

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