message.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  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="https://teacherapi.cocorobo.cn/teaching-file/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="acmsg" class="newMessage"></view>
  23. </view>
  24. <view class="mesTime fz-font">{{xacmsg.create_at}}</view>
  25. </view>
  26. </view>
  27. <view class="mesItem" @click="goToMeGXt">
  28. <view class="leftBox">
  29. <view class="mesImg">
  30. <image
  31. src="https://teacherapi.cocorobo.cn/teaching-file/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. >已加入“{{xsysmsg.acName}}”{{xsysmsg.type>=2?'教研室':'活动'}}</view
  39. >
  40. </view>
  41. </view>
  42. <view class="right">
  43. <view class="">
  44. <view v-if="sysmsg" class="newMessage"></view>
  45. </view>
  46. <view class="mesTime fz-font">{{xsysmsg.create_at}}</view>
  47. </view>
  48. </view>
  49. <view class="mesItem" @click="goToMegDy">
  50. <view class="leftBox">
  51. <view class="mesImg">
  52. <image
  53. src="https://teacherapi.cocorobo.cn/teaching-file/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. >欢迎订阅“{{xdymsg.acName}}”{{xdymsg.type>=2?'教研室':'活动'}}</view
  61. >
  62. </view>
  63. </view>
  64. <view class="right">
  65. <view class="">
  66. <view v-if="dymsg" class="newMessage"></view>
  67. </view>
  68. <view class="mesTime fz-font">{{xdymsg.create_at}}</view>
  69. </view>
  70. </view>
  71. </view>
  72. <view v-else class="noLogin">
  73. <!-- 未登录展示样式 -->
  74. <view class="mid">
  75. <image
  76. src="https://teacherapi.cocorobo.cn/teaching-file/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. // 判断是否显示红点
  96. acmsg: 0,
  97. sysmsg: 0,
  98. dymsg: 0,
  99. // 判断是否登录
  100. msgLogin: '',
  101. // 最新一条数据
  102. xacmsg: {},
  103. xsysmsg: {},
  104. xdymsg: {},
  105. };
  106. },
  107. methods: {
  108. goToMesDetail() {
  109. uni.navigateTo({
  110. url: "/pages/hdxx/hdxx",
  111. });
  112. },
  113. goToMeGXt() {
  114. uni.navigateTo({
  115. url: "/pages/messageSystem/messageSystem",
  116. });
  117. },
  118. goToMegDy() {
  119. uni.navigateTo({
  120. url: "/pages/messageDy/messageDy",
  121. });
  122. },
  123. gotoLogin() {
  124. uni.navigateTo({
  125. url: "/pages/login_Wechat/login_Wechat",
  126. });
  127. },
  128. // 获得首页显示的第一条消息
  129. // getOneMsg(){
  130. // this.$request('/selectGroupMessage', "POST", {
  131. // oid: this.$store.state.user.openid
  132. // }).then(res => {
  133. // console.log(res);
  134. // })
  135. // },
  136. // 信息页面分组查询未读信息
  137. getGroupMsg(){
  138. this.$request('/selectGroupMessage', "POST", {
  139. oid: this.$store.state.user.openid
  140. }).then(res => {
  141. console.log('出来了',res);
  142. this.acmsg=0;
  143. this.sysmsg=0;
  144. this.dymsg=0;
  145. res[0].forEach(e=>{
  146. if(e.type==0){
  147. this.acmsg=e.num
  148. }else if(e.type==1){
  149. this.sysmsg=e.num
  150. }else{
  151. this.dymsg=e.num
  152. }
  153. })
  154. this.xacmsg=res[1][0];
  155. this.xsysmsg=res[2][0];
  156. this.xdymsg=res[3][0];
  157. })
  158. },
  159. },
  160. onShow() {
  161. // 判断是否登录
  162. this.msgLogin = this.$store.state.user.openid;
  163. // 信息页面分组查询未读信息
  164. this.getGroupMsg()
  165. // 调用app.js中的方法
  166. this.getAllMessage()
  167. },
  168. };
  169. </script>
  170. <style lang="scss">
  171. .messBox {
  172. background: #fff;
  173. display: flex;
  174. flex-direction: column;
  175. flex-wrap: nowrap;
  176. // align-items: center;
  177. // 未登录展示样式
  178. .noLogin {
  179. width: 750rpx;
  180. height: 80vh;
  181. background-color: #f0f2f5;
  182. display: flex;
  183. justify-content: center;
  184. align-items: center;
  185. .mid {
  186. display: flex;
  187. flex-direction: column;
  188. align-items: center;
  189. height: 20vh;
  190. justify-content: space-between;
  191. .tit {
  192. margin-top: 30rpx;
  193. font-weight: 400;
  194. color: rgba(0, 0, 0, 0.8);
  195. line-height: 48rpx;
  196. font-size: 34rpx;
  197. }
  198. .brief {
  199. margin-top: 10rpx;
  200. }
  201. image {
  202. width: 175rpx;
  203. height: 148rpx;
  204. }
  205. .btn {
  206. margin-top: 30rpx;
  207. width: 160rpx;
  208. height: 64rpx;
  209. font-size: 28rpx;
  210. // font-weight: 600;
  211. display: flex;
  212. justify-content: center;
  213. align-items: center;
  214. background-color: rgba(0, 86, 168, 1);
  215. border-radius: 100rpx;
  216. color: #ffffff;
  217. }
  218. }
  219. }
  220. .mesItem {
  221. display: flex;
  222. // flex-direction: row;
  223. // flex-wrap: nowrap;
  224. // align-items: flex-end;
  225. justify-content: space-between;
  226. width: 750rpx;
  227. padding: 30rpx 20rpx;
  228. // position: relative;
  229. .leftBox {
  230. display: flex;
  231. justify-content: flex-start;
  232. // flex-direction: row;
  233. // flex-wrap: nowrap;
  234. // align-items: center;
  235. .mesImg {
  236. width: 96rpx;
  237. height: 96rpx;
  238. // padding: 30rpx 5rpx;
  239. margin-right: 25rpx;
  240. image {
  241. width: 100%;
  242. height: 100%;
  243. }
  244. }
  245. .mesBrief {
  246. display: flex;
  247. width: 450rpx;
  248. flex-direction: column;
  249. justify-content: space-between;
  250. .tit {
  251. font-size: 32rpx;
  252. font-weight: 400;
  253. line-height: 48rpx;
  254. color: #333333;
  255. }
  256. .breif {
  257. width: 90%;
  258. white-space: nowrap;
  259. overflow: hidden;
  260. text-overflow: ellipsis;
  261. color: rgba(51, 51, 51, 1);
  262. }
  263. }
  264. // .mesBrief:nth-child(1){
  265. // // font-size: 36rpx;
  266. // }
  267. // .mesBrief:nth-last-child(1){
  268. // color: #999;
  269. // padding: 10rpx 0 0 0;
  270. // }
  271. }
  272. .right {
  273. display: flex;
  274. flex-direction: column;
  275. justify-content: space-between;
  276. align-items: center;
  277. padding-top: 10px;
  278. .mesTime {
  279. color: #999;
  280. bottom: 30px;
  281. }
  282. .newMessage {
  283. width: 16rpx;
  284. height: 16rpx;
  285. background: red;
  286. border-radius: 10rpx;
  287. }
  288. }
  289. }
  290. }
  291. </style>