index.vue 6.8 KB

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