luntan-info.vue 12 KB

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