index.vue 6.9 KB

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