index.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <template>
  2. <view class="message-page">
  3. <navBar name="我的消息"></navBar>
  4. <view class="device-msg-wrap base-wrap" v-for="(item, index) in deviceList" :key="index" @tap="toDeviceMsgPage(item)">
  5. <view class="row">
  6. <view class="title">
  7. <view>{{ $t('设备消息') }}</view>
  8. <view v-if="item.unread > 0" class="bage">{{ item.unread }}</view>
  9. </view>
  10. <view class="time">{{item.message_date}}</view>
  11. </view>
  12. <view class="device-info">
  13. <image class="img" :src="item.image" />
  14. <view class="info">
  15. <view class="name">{{ item.car_name }}</view>
  16. <view class="status">{{item.message_overview}}</view>
  17. </view>
  18. </view>
  19. </view>
  20. <view style="margin-top: 20rpx;" class="sys-msg-wrap base-wrap">
  21. <view class="title">{{ $t('系统消息') }}</view>
  22. <view class="msg-item" v-for="(item, index) in sysMsgList" :key="index">
  23. <view class="msg">
  24. {{ item.title }}
  25. <view v-if="item.type === 1" class="btn">绑定设备</view>
  26. </view>
  27. <view class="time">{{ item.ctime }}</view>
  28. <view class="dtl">{{ item.overview }}</view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. const config = require('@/common/config.js');
  35. const http = require('@/common/http.js');
  36. const request = require('@/common/request.js');
  37. const common = require('@/common/common.js');
  38. export default {
  39. data() {
  40. return {
  41. value: 10,
  42. sysMsgList: [],
  43. deviceList: [],
  44. deviceInfo: {}
  45. }
  46. },
  47. created() {
  48. this.querySysMsgList()
  49. this.queryDeviceMsg()
  50. this.readMessage()
  51. },
  52. methods: {
  53. async readMessage(){
  54. await request.postApi(config.API_MESSAGE_READ_MESSAGE,{msg_type:2,car_id:0})
  55. },
  56. toDeviceMsgPage(itemData) {
  57. const { car_id } = itemData
  58. uni.navigateTo({ url: `/pages/message/deviceInfo?car_id=${car_id}` })
  59. },
  60. queryDeviceMsg() {
  61. http.postApi(config.API_DEVICE_MSG, {}, res => {
  62. if (res.succeed) {
  63. this.deviceList = res.body.data
  64. this.deviceList.map(item => {
  65. item.message_date = common.formatTime(item.message_date)
  66. })
  67. }
  68. })
  69. },
  70. querySysMsgList() {
  71. http.postApi(config.API_MESSAGE_LIST, { msg_type: 'PLAT' }, res => {
  72. if (res.succeed) {
  73. this.sysMsgList= res.body.data.list
  74. this.sysMsgList.map(item => {
  75. item.ctime = common.formatTime(item.ctime)
  76. })
  77. }
  78. })
  79. }
  80. }
  81. }
  82. </script>
  83. <style lang="scss" scoped>
  84. .message-page {
  85. width: 100%;
  86. min-height: 100vh;
  87. overflow: auto;
  88. background: #F1F3F4;
  89. padding: 0 24rpx;
  90. .base-wrap {
  91. background: #FFFFFF;
  92. border-radius: 40rpx;
  93. padding: 40rpx 32rpx 32rpx 32rpx;
  94. width: 100%;
  95. }
  96. .device-msg-wrap {
  97. margin: 24rpx 0;
  98. .row {
  99. margin-bottom: 40rpx;
  100. display: flex;
  101. justify-content: space-between;
  102. .title {
  103. font-family: PingFangSC, PingFang SC;
  104. font-weight: 400;
  105. font-size: 36rpx;
  106. color: #060809;
  107. position: relative;
  108. .bage {
  109. position: absolute;
  110. left: 96%;
  111. top: -12rpx;
  112. background: #FA2918;
  113. font-family: Futura, Futura;
  114. font-weight: 500;
  115. font-size: 24rpx;
  116. color: #FFFFFF;
  117. display: inline-flex;
  118. justify-content: center;
  119. align-items: center;
  120. line-height: 16px;
  121. padding: 0 5px;
  122. border-radius: 68rpx;
  123. z-index: 9;
  124. }
  125. }
  126. .time {
  127. font-family: Futura, Futura;
  128. font-weight: 500;
  129. font-size: 32rpx;
  130. color: #060809;
  131. }
  132. }
  133. .device-info {
  134. display: flex;
  135. align-items: center;
  136. .img {
  137. width: 128rpx;
  138. height: 128rpx;
  139. background: #f2f2f2;
  140. margin-right: 24rpx;
  141. }
  142. .info {
  143. .name {
  144. font-family: PingFangSC, PingFang SC;
  145. font-weight: bold;
  146. font-size: 40rpx;
  147. color: #060809;
  148. margin-bottom: 32rpx;
  149. }
  150. .status {
  151. font-family: PingFangSC, PingFang SC;
  152. font-size: 32rpx;
  153. color: #426BF2;
  154. display: flex;
  155. &::before {
  156. content: "";
  157. width: 40rpx;
  158. height: 40rpx;
  159. margin-right: 16rpx;
  160. border-radius: 50%;
  161. background: url('https://qiniu.bms16.com/Foxu2x1lQKqT5K4LqrUtWIA6Lbw8');
  162. background-size: 100%;
  163. }
  164. }
  165. }
  166. }
  167. }
  168. .sys-msg-wrap {
  169. .title {
  170. font-family: PingFangSC, PingFang SC;
  171. font-weight: 400;
  172. font-size: 36rpx;
  173. color: #060809;
  174. }
  175. .msg-item {
  176. padding: 40rpx 0;
  177. border-bottom: 1px solid #F1F4F5;
  178. &:last-child {
  179. border-bottom: none;
  180. }
  181. .msg {
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: bold;
  184. font-size: 36rpx;
  185. color: #060809;
  186. display: flex;
  187. align-items: center;
  188. justify-content: space-between;
  189. .btn {
  190. width: 192rpx;
  191. height: 64rpx;
  192. background: #060809;
  193. border-radius: 32rpx;
  194. color: #fff;
  195. display: flex;
  196. align-items: center;
  197. justify-content: center;
  198. font-family: AlibabaPuHuiTiM;
  199. font-size: 32rpx;
  200. &:active {
  201. opacity: 0.8;
  202. }
  203. }
  204. }
  205. .time {
  206. font-family: Futura, Futura;
  207. font-weight: 500;
  208. font-size: 24rpx;
  209. color: #060809;
  210. margin: 16rpx 0 24rpx;
  211. }
  212. .dtl {
  213. font-family: PingFangSC, PingFang SC;
  214. font-weight: 400;
  215. font-size: 24rpx;
  216. color: #060809;
  217. }
  218. }
  219. }
  220. }
  221. </style>