message.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. <template>
  2. <view class="messBox">
  3. <statusBar :item="navbarData"></statusBar>
  4. <view class="" v-if="msgLogin !==''">
  5. <view class="mesItem" @click="goToMesDetail">
  6. <view class="leftBox">
  7. <view class="mesImg">
  8. <image
  9. src="http://43.139.158.220:5007/img/static/message/notice.svg"
  10. mode="aspectFill"
  11. ></image>
  12. </view>
  13. <view class="mesBrief">
  14. <view class="tit">活动通知</view>
  15. <view class="breif fz-font" style="line-height: 40rpx"
  16. >活动开始提醒</view
  17. >
  18. </view>
  19. </view>
  20. <view class="right">
  21. <view class="">
  22. <view v-if="isAll" class="newMessage"></view>
  23. </view>
  24. <view class="mesTime fz-font">07-12</view>
  25. </view>
  26. </view>
  27. <view class="mesItem" @click="goToMeGXt">
  28. <view class="leftBox">
  29. <view class="mesImg">
  30. <image
  31. src="http://43.139.158.220:5007/img/static/message/system.svg"
  32. mode=""
  33. ></image>
  34. </view>
  35. <view class="mesBrief">
  36. <view class="tit">系统通知</view>
  37. <view class="breif fz-font" style="line-height: 40rpx"
  38. >已加入“创业者管理能力基础训练”教研室</view
  39. >
  40. </view>
  41. </view>
  42. <view class="right">
  43. <view class="">
  44. <view v-if="xt" class="newMessage"></view>
  45. </view>
  46. <view class="mesTime fz-font">07-12</view>
  47. </view>
  48. </view>
  49. <view class="mesItem" @click="goToMegDy">
  50. <view class="leftBox">
  51. <view class="mesImg">
  52. <image
  53. src="http://43.139.158.220:5007/img/static/message/subscribe.svg"
  54. mode=""
  55. ></image>
  56. </view>
  57. <view class="mesBrief">
  58. <view class="tit">订阅消息</view>
  59. <view class="breif fz-font" style="line-height: 40rpx"
  60. >欢迎订阅“创业者管理能力基础训练”讲座</view
  61. >
  62. </view>
  63. </view>
  64. <view class="right">
  65. <view class="">
  66. <view v-if="dy" class="newMessage"></view>
  67. </view>
  68. <view class="mesTime fz-font">07-12</view>
  69. </view>
  70. </view>
  71. </view>
  72. <view v-else class="noLogin">
  73. <!-- 未登录展示样式 -->
  74. <view class="mid">
  75. <image
  76. src="http://43.139.158.220:5007/img/static/yym/Vector.png"
  77. mode="aspectFill"
  78. ></image>
  79. <view class="tit" style="">您暂时还没有消息</view>
  80. <view class="brief fz-font" style="color: rgba(0, 0, 0, 0.4)"
  81. >快去登录查看消息吧</view
  82. >
  83. <view class="btn" @click="gotoLogin">去登录</view>
  84. </view>
  85. </view>
  86. </view>
  87. </template>
  88. <script>
  89. export default {
  90. data() {
  91. return {
  92. navbarData: {
  93. title: "消息",
  94. },
  95. // msgList:[
  96. // {tit:'hd',isClick:0},
  97. // {tit:'hd',isClick:0},
  98. // {tit:'hd',isClick:0},
  99. // ]
  100. isAll: 1,
  101. xt: 1,
  102. dy: 1,
  103. msgLogin: '',
  104. };
  105. },
  106. methods: {
  107. goToMesDetail() {
  108. uni.navigateTo({
  109. url: "/pages/hdxx/hdxx",
  110. });
  111. this.isAll = 0;
  112. },
  113. goToMeGXt() {
  114. uni.navigateTo({
  115. url: "/pages/messageSystem/messageSystem",
  116. });
  117. this.xt = 0;
  118. },
  119. goToMegDy() {
  120. uni.navigateTo({
  121. url: "/pages/messageDy/messageDy",
  122. });
  123. this.dy = 0;
  124. },
  125. gotoLogin() {
  126. uni.navigateTo({
  127. url: "/pages/login/login?id=1",
  128. });
  129. },
  130. },
  131. onShow() {
  132. // this.msgLogin = uni.getStorageSync('msgLogin');
  133. this.msgLogin = this.$store.state.user.openid;
  134. },
  135. };
  136. </script>
  137. <style lang="scss">
  138. .messBox {
  139. background: #fff;
  140. display: flex;
  141. flex-direction: column;
  142. flex-wrap: nowrap;
  143. // align-items: center;
  144. // 未登录展示样式
  145. .noLogin {
  146. width: 750rpx;
  147. height: 80vh;
  148. background-color: #f0f2f5;
  149. display: flex;
  150. justify-content: center;
  151. align-items: center;
  152. .mid {
  153. display: flex;
  154. flex-direction: column;
  155. align-items: center;
  156. height: 20vh;
  157. justify-content: space-between;
  158. .tit {
  159. margin-top: 30rpx;
  160. font-weight: 400;
  161. color: rgba(0, 0, 0, 0.8);
  162. line-height: 48rpx;
  163. font-size: 34rpx;
  164. }
  165. .brief {
  166. margin-top: 10rpx;
  167. }
  168. image {
  169. width: 175rpx;
  170. height: 148rpx;
  171. }
  172. .btn {
  173. margin-top: 30rpx;
  174. width: 160rpx;
  175. height: 64rpx;
  176. font-size: 28rpx;
  177. // font-weight: 600;
  178. display: flex;
  179. justify-content: center;
  180. align-items: center;
  181. background-color: rgba(0, 86, 168, 1);
  182. border-radius: 100rpx;
  183. color: #ffffff;
  184. }
  185. }
  186. }
  187. .mesItem {
  188. display: flex;
  189. // flex-direction: row;
  190. // flex-wrap: nowrap;
  191. // align-items: flex-end;
  192. justify-content: space-between;
  193. width: 750rpx;
  194. padding: 30rpx 20rpx;
  195. // position: relative;
  196. .leftBox {
  197. display: flex;
  198. justify-content: flex-start;
  199. // flex-direction: row;
  200. // flex-wrap: nowrap;
  201. // align-items: center;
  202. .mesImg {
  203. width: 96rpx;
  204. height: 96rpx;
  205. // padding: 30rpx 5rpx;
  206. margin-right: 25rpx;
  207. image {
  208. width: 100%;
  209. height: 100%;
  210. }
  211. }
  212. .mesBrief {
  213. display: flex;
  214. flex-direction: column;
  215. justify-content: space-between;
  216. .tit {
  217. font-size: 32rpx;
  218. font-weight: 400;
  219. line-height: 48rpx;
  220. color: #333333;
  221. }
  222. .breif {
  223. // font-size: 16px;
  224. color: rgba(51, 51, 51, 1);
  225. }
  226. }
  227. // .mesBrief:nth-child(1){
  228. // // font-size: 36rpx;
  229. // }
  230. // .mesBrief:nth-last-child(1){
  231. // color: #999;
  232. // padding: 10rpx 0 0 0;
  233. // }
  234. }
  235. .right {
  236. display: flex;
  237. flex-direction: column;
  238. justify-content: space-between;
  239. align-items: center;
  240. padding-top: 10px;
  241. .mesTime {
  242. color: #999;
  243. bottom: 30px;
  244. }
  245. .newMessage {
  246. width: 16rpx;
  247. height: 16rpx;
  248. background: red;
  249. border-radius: 10rpx;
  250. }
  251. }
  252. }
  253. }
  254. </style>