index.vue 8.0 KB

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