index.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. <template>
  2. <view class="pinglun">
  3. <view class="pinglun-title">
  4. 全部评论
  5. </view>
  6. <view class="pinglun-item hflex jbetween" v-for="(item,index) in pinglunlist" :key="index">
  7. <image class="user-img" :src="item.user.avatar" mode="aspectFill"></image>
  8. <view class="pinglun-right">
  9. <view class="pinglun-user hflex jbetween">
  10. <view class="pinglun-user-center">
  11. <text>{{item.user.username || '暂无昵称'}}</text>
  12. </view>
  13. </view>
  14. <view class="pinglun-text">
  15. {{item.content}}
  16. </view>
  17. <view class="hflex acenter jbetween">
  18. <view class="pinglun-time hflex acneter">
  19. <text>{{item.date}}</text>
  20. <text @click="reply(item)">回复</text>
  21. </view>
  22. <view class="hflex acenter pinglun-dianzan" @click="like(index,'-1')">
  23. <image v-if="item.is_like == 0" src="@/static/images/dianzan.png" mode="aspectFill"></image>
  24. <image v-else src="@/static/images/dianzan2.png" mode="aspectFill"></image>
  25. <text>{{item.like_count || '0'}}</text>
  26. <!-- <image src="@/static/images/cai.png" mode="aspectFill"></image> -->
  27. </view>
  28. </view>
  29. <view v-if="item.children.length > 0">
  30. <view class="pinglun-item2 hflex" v-for="(a,b) in item.children" :key="b">
  31. <image class="user-img2" :src="a.user.avatar" mode="aspectFill"></image>
  32. <view class="pinglun-right">
  33. <view class="pinglun-user hflex">
  34. <view class="pinglun-user-center hflex acenter">
  35. <text>{{a.user.username}}</text>
  36. <u-icon name="play-right-fill" color="#999999" size="16"></u-icon>
  37. <text>{{a.parent_user.username}}</text>
  38. </view>
  39. </view>
  40. <view class="pinglun-text">
  41. {{a.content}}
  42. </view>
  43. <view class="hflex acenter jbetween">
  44. <view class="pinglun-time hflex acneter">
  45. <text>{{a.date}}</text>
  46. <text @click="reply(a)">回复</text>
  47. </view>
  48. <view class="hflex acenter pinglun-dianzan" @click="like(index,b)">
  49. <image v-if="a.is_like == 0" src="@/static/images/dianzan.png" mode="aspectFill">
  50. </image>
  51. <image v-else src="@/static/images/dianzan.png" mode=""></image>
  52. <text>{{a.like_count || '0'}}</text>
  53. <!-- <image src="@/static/images/cai.png" mode="aspectFill"></image> -->
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="huifu hflex acenter jbetween" v-if="show">
  62. <image :src="user.avatar" mode="aspectFill"></image>
  63. <u-input v-model="comment" placeholder="添加新评论" border="none" adjustPosition focus></u-input>
  64. <text @click="send">发送</text>
  65. </view>
  66. </view>
  67. </template>
  68. <script>
  69. import $api from '@/static/js/api.js'
  70. export default {
  71. props: {
  72. show_jianpan: {
  73. typeof: Boolean,
  74. default: false
  75. },
  76. type: {
  77. typeof: String,
  78. default: ''
  79. },
  80. id: {
  81. typeof: String,
  82. default: ''
  83. },
  84. },
  85. watch: {
  86. show_jianpan(newval, oldval) {
  87. this.show = newval
  88. },
  89. },
  90. data() {
  91. return {
  92. user: {},
  93. comment: '',
  94. pinglunlist: [],
  95. show: false,
  96. limit: 10,
  97. parent_id: '0'
  98. }
  99. },
  100. mounted() {
  101. this.getuser()
  102. setTimeout(() => {
  103. this.getlist()
  104. }, 300)
  105. },
  106. methods: {
  107. getuser() {
  108. var that = this
  109. $api.req({
  110. url: 'user/info',
  111. }, function(res) {
  112. that.user = res.data
  113. })
  114. },
  115. like(index,type) {
  116. var that = this
  117. $api.req({
  118. url: 'like',
  119. method: 'post',
  120. data: {
  121. source_type: 'comment',
  122. source_id: type == '-1' ? this.pinglunlist[index].id : this.pinglunlist[index].children[type].id
  123. }
  124. }, function(res) {
  125. $api.info(res.msg)
  126. if(type == '-1') {
  127. that.pinglunlist[index].is_like = 1
  128. that.pinglunlist[index].like_count += 1
  129. } else {
  130. that.pinglunlist[index].children[type].is_like = 1
  131. that.pinglunlist[index].children[type].like_count += 1
  132. }
  133. })
  134. },
  135. reply(item) {
  136. this.show = true
  137. this.parent_id = item.id
  138. },
  139. send() {
  140. if (this.comment == '') {
  141. uni.$u.toast('请先输入内容')
  142. return
  143. }
  144. var _this = this
  145. $api.req({
  146. url: 'comment',
  147. method: 'post',
  148. data: {
  149. source_type: _this.type,
  150. source_id: _this.id,
  151. content: _this.comment,
  152. parent_id: _this.parent_id
  153. }
  154. }, function(res) {
  155. if (res.code == 10000) {
  156. uni.$u.toast('评论成功')
  157. _this.comment = ''
  158. _this.getlist()
  159. }
  160. })
  161. },
  162. getlist() {
  163. var _this = this
  164. $api.req({
  165. url: 'comment',
  166. method: 'GET',
  167. data: {
  168. limit: _this.limit,
  169. source_type: _this.type,
  170. source_id: _this.id,
  171. order_type: 'desc'
  172. }
  173. }, function(res) {
  174. if (res.code == 10000) {
  175. _this.pinglunlist = res.data
  176. }
  177. })
  178. }
  179. }
  180. }
  181. </script>
  182. <style lang="scss">
  183. .pinglun::v-deep {
  184. padding: 0 32rpx;
  185. box-sizing: border-box;
  186. .huifu {
  187. position: fixed;
  188. bottom: 0;
  189. left: 0;
  190. height: 160rpx;
  191. z-index: 999;
  192. background: #FFFFFF;
  193. // box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0,0,0,0.1);
  194. padding: 20rpx 28rpx;
  195. box-sizing: border-box;
  196. width: 100%;
  197. image {
  198. width: 56rpx !important;
  199. height: 56rpx;
  200. border-radius: 50%;
  201. margin: 0 20rpx 0 0;
  202. }
  203. text {
  204. font-size: 32rpx;
  205. font-family: PingFangSC, PingFang SC;
  206. font-weight: 500;
  207. color: #999999;
  208. }
  209. }
  210. .pinglun-item {
  211. box-sizing: border-box;
  212. width: 100%;
  213. .pinglun-right {
  214. width: calc(100% - 88rpx);
  215. .pinglun-time {
  216. margin-bottom: 28rpx;
  217. text:first-child {
  218. font-size: 24rpx;
  219. font-family: PingFangSC-Regular, PingFang SC;
  220. font-weight: 400;
  221. color: #777777;
  222. margin-right: 24rpx;
  223. }
  224. text:nth-child(2) {
  225. font-size: 24rpx;
  226. font-family: PingFangSC-Regular, PingFang SC;
  227. font-weight: 400;
  228. color: #222222;
  229. }
  230. }
  231. .pinglun-text {
  232. padding: 0 36rpx 0 0;
  233. font-size: 28rpx;
  234. font-family: PingFangSC-Regular, PingFang SC;
  235. font-weight: 400;
  236. color: #333333;
  237. margin-bottom: 20rpx;
  238. }
  239. .pinglun-dianzan {
  240. margin-bottom: 28rpx;
  241. image {
  242. width: 32rpx;
  243. height: 32rpx;
  244. // margin-right: 4rpx;
  245. }
  246. text {
  247. font-size: 24rpx;
  248. font-family: ArialMT;
  249. padding: 0 24rpx 0 12rpx;
  250. color: #777777;
  251. }
  252. }
  253. .pinglun-user {
  254. margin-bottom: 24rpx;
  255. .pinglun-user-center {
  256. height: 68rpx;
  257. .u-icon {
  258. padding: 0 16rpx;
  259. }
  260. text {
  261. font-size: 28rpx;
  262. font-weight: 500;
  263. color: #222222;
  264. }
  265. }
  266. }
  267. }
  268. .user-img {
  269. width: 68rpx;
  270. height: 68rpx;
  271. border-radius: 50%;
  272. margin-right: 20rpx;
  273. }
  274. }
  275. .pinglun-item2 {
  276. box-sizing: border-box;
  277. width: 100%;
  278. .pinglun-right {
  279. width: calc(100% - 88rpx);
  280. .pinglun-time {
  281. margin-bottom: 28rpx;
  282. text:first-child {
  283. font-size: 24rpx;
  284. font-family: PingFangSC-Regular, PingFang SC;
  285. font-weight: 400;
  286. color: #777777;
  287. margin-right: 24rpx;
  288. }
  289. text:nth-child(2) {
  290. font-size: 24rpx;
  291. font-family: PingFangSC-Regular, PingFang SC;
  292. font-weight: 400;
  293. color: #222222;
  294. }
  295. }
  296. .pinglun-text {
  297. padding: 0 36rpx 0 0;
  298. font-size: 28rpx;
  299. font-family: PingFangSC-Regular, PingFang SC;
  300. font-weight: 400;
  301. color: #333333;
  302. margin-bottom: 20rpx;
  303. }
  304. .pinglun-dianzan {
  305. margin-bottom: 28rpx;
  306. image {
  307. width: 32rpx;
  308. height: 32rpx;
  309. // margin-right: 4rpx;
  310. }
  311. text {
  312. font-size: 24rpx;
  313. font-family: ArialMT;
  314. padding: 0 24rpx 0 12rpx;
  315. color: #777777;
  316. }
  317. }
  318. .pinglun-user {
  319. margin-bottom: 24rpx;
  320. .pinglun-user-center {
  321. height: 68rpx;
  322. .u-icon {
  323. padding: 0 16rpx;
  324. }
  325. text {
  326. font-size: 28rpx;
  327. font-weight: 500;
  328. color: #222222;
  329. }
  330. }
  331. }
  332. }
  333. .user-img2 {
  334. width: 68rpx;
  335. height: 68rpx;
  336. border-radius: 50%;
  337. margin-right: 20rpx;
  338. }
  339. }
  340. .pinglun-title {
  341. font-size: 32rpx;
  342. font-family: PingFangSC-Medium, PingFang SC;
  343. font-weight: 500;
  344. color: #222222;
  345. line-height: 112rpx;
  346. }
  347. }
  348. </style>