messageDy.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <template>
  2. <view class="messageDy">
  3. <statusBar :item="navBarData"></statusBar>
  4. <scroll-view scroll-y="true" :scroll-top="scrollTop" id="scrollview" class="scrollV"
  5. :style="{height:screenHeight - navheight+'px'}">
  6. <view class="reverse" id="msglistview">
  7. <view class="content" v-for="(item,index) in list" :key="index">
  8. <view class="conblock">
  9. <view class="header">
  10. <view class="disC three-font">
  11. 成功订阅[{{item.acName}}]{{item.type>=2?'教研室':'活动'}}
  12. </view>
  13. </view>
  14. <view class="sj fwb-font">{{item.create_at}}</view>
  15. <view class="main">
  16. <view class="fwb-font">
  17. 尊敬的
  18. <text>{{item.username}}</text>
  19. </view>
  20. <view class="fwb-font" style="text-indent: 2em;width: 100%;">
  21. 我们很高兴通知您,您已成功订阅
  22. <text class="btn-font Xbold" style="color: #0056a8;">[{{item.acName}}]</text>
  23. !欢迎加入我们的团队,我们期待与您一同合作并共同追求卓越教育。
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </scroll-view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. navBarData: {
  37. title: '订阅消息',
  38. btn: 1
  39. },
  40. newsLoading: 0, //0默认值 1加载中 2没有更多了
  41. currentPage: 1,
  42. list: [],
  43. scrollTop: 0,
  44. navheight: this.navheight, //导航栏高度
  45. screenHeight: this.screenHeight
  46. };
  47. },
  48. methods: {
  49. // 获取数据
  50. getdata() {
  51. let data = {
  52. oid: this.$store.state.user.openid, //用户id
  53. type: 2,
  54. page: this.currentPage,
  55. lim: 30
  56. }
  57. this.$request('/selectMessage', "POST", data).then(res => {
  58. console.log('获取', res[0]);
  59. // this.list = [this.list,...res[0]]
  60. this.list = res[0]
  61. // console.log('获取',this.list);
  62. })
  63. },
  64. // 聊天记录自动跳转底部
  65. scrollToBottom() {
  66. let that = this
  67. let query = uni.createSelectorQuery()
  68. query.select('#scrollview').boundingClientRect()
  69. query.select('#msglistview').boundingClientRect()
  70. query.exec((res) => {
  71. // console.log('res', res);
  72. console.log('res', res[0].height, res[1].height);
  73. if (res[1].height > res[0].height) {
  74. that.scrollTop = res[1].height - res[0].height
  75. }
  76. })
  77. },
  78. // 更新已读
  79. updateisread() {
  80. let data = {
  81. oid: this.$store.state.user.openid, //用户id
  82. type: 2,
  83. }
  84. this.$request('/updateIsRead', "POST", data).then(res => {
  85. // console.log('获取', res);
  86. })
  87. },
  88. },
  89. // 进入页面渲染完毕后调用
  90. onReady() {
  91. // this.scrollToBottom()
  92. this.scrollToBottom();
  93. console.log(11111);
  94. },
  95. onLoad() {
  96. this.getdata()
  97. // 更新已读
  98. this.updateisread()
  99. // this.scrollToBottom()
  100. }
  101. };
  102. </script>
  103. <style lang="scss">
  104. .messageDy {
  105. height: 100vh;
  106. }
  107. .scrollV {
  108. // overflow: hidden;
  109. // height: 200rpx !important;
  110. // background-color: #0056a8;
  111. }
  112. .reverse {
  113. display: flex;
  114. flex-direction: column-reverse;
  115. padding-bottom: 80rpx;
  116. .content {
  117. padding: 10px;
  118. margin: 10px;
  119. background-color: white;
  120. border-radius: 8px;
  121. display: flex;
  122. justify-content: center;
  123. .conblock {
  124. .header {
  125. color: black;
  126. font-weight: 600;
  127. display: flex;
  128. justify-content: space-between;
  129. .disC {
  130. display: flex;
  131. width: 100%;
  132. font-weight: bold;
  133. justify-content: space-between;
  134. align-items: baseline;
  135. /*隐藏溢出*/
  136. /*当文本溢出包含元素时显示省略符号来代表被修剪的文本*/
  137. /*规定段落中的文本不进行换行*/
  138. white-space: normal;
  139. letter-spacing: 2rpx;
  140. display: -webkit-box;
  141. word-break: break-all;
  142. text-overflow: ellipsis;
  143. overflow: hidden;
  144. -webkit-box-orient: vertical;
  145. -webkit-line-clamp: 2;
  146. /*设置 需要显示的行数*/
  147. }
  148. }
  149. .sj {
  150. color: #999999;
  151. font-weight: 500;
  152. padding: 10rpx 0;
  153. }
  154. .main {
  155. color: #999999;
  156. font-weight: 400;
  157. .Xbold {
  158. color: #0056a8;
  159. font-weight: 600;
  160. }
  161. }
  162. }
  163. }
  164. }
  165. </style>