index.vue 7.4 KB

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