index.vue 7.2 KB

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