pinglun-list.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <template>
  2. <view class="content">
  3. <view class="list-item" v-for="(item,index) in list" :key="index">
  4. <view class="top hflex acenter jbetween">
  5. <view class="user hflex acenter" v-if="item.user">
  6. <image :src="item.user.avatar" mode="aspectFill"></image>
  7. <view class="user-name vflex">
  8. <text>{{item.user.username}}</text>
  9. <text>{{item.created_at}}</text>
  10. </view>
  11. </view>
  12. <view class="reply-btn" @click="toreply(item)">回复</view>
  13. </view>
  14. <view class="text">{{item.content}}</view>
  15. <view class="vflex item">
  16. <view class="pinglun" v-if="item.parent">{{item.parent_user.username}}:<span
  17. style="color: #444444;padding-left: 8rpx;">{{item.parent.content}}</span></view>
  18. <view class="hflex acenter">
  19. <image :src="item.source.image" mode="aspectFill"></image>
  20. <text class="text_hide2">{{item.source.title}}</text>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="huifu hflex acenter jbetween" v-if="show">
  25. <!-- <image :src="user.avatar" mode="aspectFill"></image> -->
  26. <u-input v-model="content" placeholder="添加新评论" border="none" adjustPosition focus></u-input>
  27. <text @click="reply">发送</text>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import $api from '@/static/js/api.js'
  33. export default {
  34. data() {
  35. return {
  36. list: [],
  37. page: 1,
  38. last_page: 1,
  39. user_id: '',
  40. content: '',
  41. data: {},
  42. show: false
  43. }
  44. },
  45. onLoad() {
  46. this.user_id = uni.getStorageSync('userid')
  47. this.getlist()
  48. },
  49. onShow() {
  50. },
  51. onPullDownRefresh() {
  52. },
  53. onReachBottom() {
  54. },
  55. methods: {
  56. toreply(item) {
  57. this.data = item
  58. this.show = true
  59. },
  60. reply() {
  61. let item = this.data
  62. var that = this
  63. $api.req({
  64. url: 'comment',
  65. method: 'post',
  66. data: {
  67. source_type: item.source_type,
  68. source_id: item.source_id,
  69. content: this.content,
  70. parent_id: item.parent_id
  71. }
  72. }, function(res) {
  73. $api.info(res.msg)
  74. that.content = ''
  75. that.show = false
  76. setTimeout(()=> {
  77. that.getlist()
  78. })
  79. })
  80. },
  81. getlist() {
  82. var that = this
  83. $api.req({
  84. url: 'comment/my-list',
  85. data: {
  86. limit: 10,
  87. is_page: 1,
  88. page: that.page
  89. }
  90. }, function(res) {
  91. that.list = that.list.concat(res.data.list)
  92. that.last_page = res.data.last_page
  93. })
  94. },
  95. }
  96. }
  97. </script>
  98. <style lang="scss">
  99. .content {
  100. background: #F5F5F5;
  101. .list-item {
  102. padding: 0 0 20rpx;
  103. margin: 0 0 20rpx;
  104. background: #FFFFFF;
  105. .top {
  106. padding: 26rpx 28rpx;
  107. .user {
  108. // padding: 20rpx 0 0 ;
  109. image {
  110. width: 80rpx;
  111. height: 80rpx;
  112. border-radius: 50%;
  113. margin-right: 20rpx;
  114. }
  115. .user-name {
  116. text:first-child {
  117. font-size: 28rpx;
  118. font-family: PingFangSC, PingFang SC;
  119. font-weight: 500;
  120. color: #333333;
  121. }
  122. text:last-child {
  123. font-size: 22rpx;
  124. font-family: PingFangSC, PingFang SC;
  125. font-weight: 400;
  126. color: #666666;
  127. padding-top: 4rpx;
  128. }
  129. }
  130. }
  131. .reply-btn {
  132. width: 104rpx;
  133. height: 52rpx;
  134. border-radius: 26rpx;
  135. border: 1rpx solid #979797;
  136. font-size: 24rpx;
  137. font-family: PingFangSC, PingFang SC;
  138. font-weight: 400;
  139. color: #222222;
  140. line-height: 52rpx;
  141. text-align: center;
  142. }
  143. }
  144. .text {
  145. padding: 0 28rpx 20rpx;
  146. font-size: 28rpx;
  147. font-family: SFPro, SFPro;
  148. font-weight: 400;
  149. color: #333333;
  150. }
  151. .item {
  152. background: #F5F5F5;
  153. padding: 20rpx 28rpx;
  154. box-sizing: border-box;
  155. .pinglun {
  156. font-size: 26rpx;
  157. font-family: PingFangSC, PingFang SC;
  158. font-weight: 400;
  159. color: #00B0B0;
  160. padding: 0 0 20rpx;
  161. }
  162. image {
  163. width: 160rpx;
  164. height: 90rpx;
  165. }
  166. text {
  167. font-size: 24rpx;
  168. font-family: PingFangSC, PingFang SC;
  169. font-weight: 400;
  170. color: #222222;
  171. // background: #FFFFFF;
  172. // height: 90rpx;
  173. // box-sizing: border-box;
  174. padding: 10rpx 20rpx;
  175. }
  176. }
  177. }
  178. .huifu {
  179. position: fixed;
  180. bottom: 0;
  181. left: 0;
  182. height: 160rpx;
  183. z-index: 999;
  184. background: #FFFFFF;
  185. // box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0,0,0,0.1);
  186. padding: 20rpx 28rpx;
  187. box-sizing: border-box;
  188. width: 100%;
  189. image {
  190. width: 56rpx !important;
  191. height: 56rpx;
  192. border-radius: 50%;
  193. margin: 0 20rpx 0 0;
  194. }
  195. text {
  196. font-size: 32rpx;
  197. font-family: PingFangSC, PingFang SC;
  198. font-weight: 500;
  199. color: #999999;
  200. }
  201. }
  202. }
  203. </style>