index.vue 7.0 KB

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