message.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <template>
  2. <view class="content">
  3. <u-navbar title="" placeholder autoBack>
  4. <view class="hflex acenter u-nav-center" slot="center">
  5. <view class="item" :class="current == 1 ? 'active' : ''" @click="tochangetab(1)">通知</view>
  6. <view class="item" :class="current == 2 ? 'active' : ''" @click="tochangetab(2)">私信</view>
  7. </view>
  8. </u-navbar>
  9. <view class="top hflex acenter jbetween" v-if="current == 1">
  10. <view class="item vflex acenter jcenter" @click="todianzan">
  11. <image src="/static/images/dianzan-light.png" mode="aspectFill"></image>
  12. <text>点赞</text>
  13. </view>
  14. <view class="item vflex acenter jcenter" @click="tocollect">
  15. <image src="/static/images/collect-light.png" mode="aspectFill"></image>
  16. <text>收藏</text>
  17. </view>
  18. <view class="item vflex acenter jcenter" @click="topinglun">
  19. <image src="/static/images/pinglun-light.png" mode="aspectFill"></image>
  20. <text>评论</text>
  21. </view>
  22. </view>
  23. <view class="list" v-if="list.length == 0 && current == 1">
  24. <view class="empty">没有通知消息</view>
  25. </view>
  26. <view class="list" v-if="list.length> 0 && current == 1">
  27. <view class="list-item" v-for="(item,index) in list" :key="index">
  28. <view class="item-top hflex acenter jbetween">
  29. <text class="text_hide">{{item.title}}</text>
  30. <text>{{item.created_at}}</text>
  31. </view>
  32. <view class="text">{{item.content}}</view>
  33. </view>
  34. </view>
  35. <view class="list" v-if="list.length == 0 && current == 2">
  36. <view class="empty">没有私信消息</view>
  37. </view>
  38. <view class="list" v-if="list.length > 0 && current == 2">
  39. <view class="list-item2 hflex acenter" v-for="(item,index) in list" :key="index" @click="tochat(item)">
  40. <image :src="item.chat_user.avatar" mode="aspectFill"></image>
  41. <view class="img-right">
  42. <view class="hflex acenter jbetween right-top">
  43. <text>{{item.chat_user.username}}</text>
  44. <text>{{item.created_at}}</text>
  45. </view>
  46. <view class="hflex acneter jbetween">
  47. <view class="text text_hide">{{item.content}}</view>
  48. <view class="num" v-if="item.unread_count > 0">{{item.unread_count}}</view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. import $api from '@/static/js/api.js'
  57. var that = ''
  58. export default {
  59. data() {
  60. return {
  61. current: 1,
  62. list: [],
  63. page: 1,
  64. last_page: 1
  65. }
  66. },
  67. onLoad() {
  68. that = this
  69. },
  70. onShow() {
  71. this.list = []
  72. this.page = 1
  73. this.getlist()
  74. },
  75. onPullDownRefresh() {
  76. },
  77. onReachBottom() {
  78. if (this.last_page == this.page) {
  79. uni.$u.toast('已经到底了')
  80. return
  81. } else {
  82. this.page++
  83. this.getlist()
  84. }
  85. },
  86. methods: {
  87. getlist() {
  88. if (this.current == 1) {
  89. $api.req({
  90. url: 'notification',
  91. data: {
  92. is_page: 1,
  93. page: that.page,
  94. limit: 10,
  95. type: 'system'
  96. }
  97. }, function(res) {
  98. that.list = that.list.concat(res.data.list)
  99. that.last_page = res.data.last_page
  100. })
  101. } else {
  102. $api.req({
  103. url: 'chat',
  104. data: {
  105. is_page: 1,
  106. page: that.page,
  107. limit: 10,
  108. }
  109. }, function(res) {
  110. that.list = that.list.concat(res.data)
  111. that.last_page = res.data.last_page
  112. })
  113. }
  114. },
  115. tochat(item) {
  116. uni.navigateTo({
  117. url: '/pageA/chat?chat_user_id=' + item.chat_user_id
  118. })
  119. },
  120. topinglun() {
  121. uni.navigateTo({
  122. url: '/pageA/pinglun-list'
  123. })
  124. },
  125. tocollect() {
  126. uni.navigateTo({
  127. url: '/pageA/shoucang-list'
  128. })
  129. },
  130. todianzan() {
  131. uni.navigateTo({
  132. url: '/pageA/dianzan-list'
  133. })
  134. },
  135. tochangetab(index) {
  136. this.current = index
  137. this.list = []
  138. this.page = 1
  139. this.getlist()
  140. }
  141. }
  142. }
  143. </script>
  144. <style lang="scss">
  145. .content {
  146. background: #F5F5F5;
  147. .list {
  148. width: 100%;
  149. min-height: calc(100vh - 400rpx);
  150. background: #FFFFFF;
  151. box-sizing: border-box;
  152. padding: 0 28rpx;
  153. .list-item {
  154. padding: 28rpx 0 32rpx;
  155. border-bottom: 1px solid #F5F5F5;
  156. .item-top {
  157. width: 100%;
  158. text:first-child {
  159. font-size: 32rpx;
  160. font-family: PingFangSC, PingFang SC;
  161. font-weight: 600;
  162. color: #333333;
  163. max-width: 550rpx;
  164. }
  165. text:last-child {
  166. font-size: 22rpx;
  167. font-family: PingFangSC, PingFang SC;
  168. font-weight: 400;
  169. color: #666666;
  170. }
  171. }
  172. .text {
  173. font-size: 24rpx;
  174. font-family: PingFangSC, PingFang SC;
  175. font-weight: 400;
  176. color: #666666;
  177. padding: 20rpx 0 0;
  178. }
  179. }
  180. .list-item2 {
  181. padding: 28rpx 0 32rpx;
  182. border-bottom: 1px solid #F5F5F5;
  183. image {
  184. width: 92rpx;
  185. height: 92rpx;
  186. border-radius: 50%;
  187. }
  188. .img-right {
  189. width: calc(100% - 92rpx);
  190. padding: 0 0 0 20rpx;
  191. .right-top {
  192. width: 100%;
  193. text:first-child {
  194. font-size: 32rpx;
  195. font-family: PingFangSC, PingFang SC;
  196. font-weight: 600;
  197. color: #333333;
  198. }
  199. text:last-child {
  200. font-size: 22rpx;
  201. font-family: PingFangSC, PingFang SC;
  202. font-weight: 400;
  203. color: #999999;
  204. }
  205. }
  206. .text {
  207. max-width: 500rpx;
  208. font-size: 24rpx;
  209. font-family: PingFangSC, PingFang SC;
  210. font-weight: 400;
  211. color: #666666;
  212. padding: 14rpx 0 0;
  213. }
  214. .num {
  215. background: #F34025;
  216. font-size: 20rpx;
  217. font-family: SFPro, SFPro;
  218. font-weight: 400;
  219. color: #FFFFFF;
  220. padding: 2rpx 10rpx;
  221. margin: 14rpx 0 0;
  222. border-radius: 50%;
  223. }
  224. }
  225. }
  226. .empty {
  227. width: 264rpx;
  228. padding-top: 264rpx;
  229. margin: 0 auto 0;
  230. font-size: 44rpx;
  231. font-family: PingFangSC, PingFang SC;
  232. font-weight: 500;
  233. color: rgba(34, 34, 34, .5);
  234. }
  235. }
  236. .top {
  237. width: 100%;
  238. box-sizing: border-box;
  239. padding: 44rpx 72rpx 34rpx;
  240. background: #FFFFFF;
  241. margin: 0 0 20rpx;
  242. .item {
  243. image {
  244. width: 96rpx;
  245. height: 96rpx;
  246. }
  247. text {
  248. font-size: 24rpx;
  249. font-family: PingFangSC, PingFang SC;
  250. font-weight: 400;
  251. color: #222222;
  252. padding: 16rpx 0 0;
  253. }
  254. }
  255. }
  256. .u-nav-center {
  257. .item {
  258. font-size: 36rpx;
  259. font-family: PingFangSC, PingFang SC;
  260. font-weight: 500;
  261. color: rgba(34, 34, 34, .4);
  262. padding-right: 46rpx;
  263. }
  264. .active {
  265. color: #222222;
  266. }
  267. }
  268. }
  269. </style>