luntan-info.vue 12 KB

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