index.vue 7.1 KB

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