index.vue 7.6 KB

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