index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  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="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">绑定设备</view>
  41. </view>
  42. <view class="time">{{ 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. 您还没有系统消息
  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. created() {
  72. this.querySysMsgList()
  73. this.queryDeviceMsg()
  74. // this.readMessage()
  75. },
  76. methods: {
  77. async readMessage() {
  78. await request.postApi(config.API_MESSAGE_READ_MESSAGE, {
  79. msg_type: 2,
  80. car_id: 0
  81. })
  82. },
  83. gotoDetail(item) {
  84. request.postApi(config.API_MESSAGE_READ_MESSAGE, {
  85. msg_type: 2,
  86. msg_id : item.plat_msg_id,
  87. car_id: ''
  88. })
  89. uni.navigateTo({
  90. url: `/pages/message/detail?id=${item.plat_msg_id}`
  91. })
  92. },
  93. toDeviceMsgPage(itemData) {
  94. const {
  95. car_id
  96. } = itemData
  97. uni.navigateTo({
  98. url: `/pages/message/deviceInfo?car_id=${car_id}`
  99. })
  100. },
  101. queryDeviceMsg() {
  102. http.postApi(config.API_DEVICE_MSG, {}, res => {
  103. if (res.succeed) {
  104. this.deviceList = res.body.data
  105. this.deviceList.map(item => {
  106. item.message_date = common.formatTime(item.message_date)
  107. })
  108. }
  109. })
  110. },
  111. querySysMsgList() {
  112. http.postApi(config.API_MESSAGE_LIST, {
  113. msg_type: 'PLAT'
  114. }, res => {
  115. if (res.succeed) {
  116. this.sysMsgList = res.body.data.list
  117. this.sysMsgList.map(item => {
  118. item.ctime = common.formatTime(item.ctime)
  119. })
  120. this.unreadCount = this.sysMsgList.filter(item => item.read === "0").length;
  121. }
  122. })
  123. }
  124. }
  125. }
  126. </script>
  127. <style lang="scss" scoped>
  128. .message-page {
  129. width: 100%;
  130. min-height: 100vh;
  131. overflow: auto;
  132. background: #F1F3F4;
  133. padding: 0 24rpx;
  134. .base-wrap {
  135. background: #FFFFFF;
  136. border-radius: 40rpx;
  137. padding: 40rpx 32rpx 32rpx 32rpx;
  138. width: 100%;
  139. }
  140. .device-msg-wrap {
  141. margin: 24rpx 0;
  142. .row {
  143. margin-bottom: 40rpx;
  144. display: flex;
  145. justify-content: space-between;
  146. .title {
  147. font-family: PingFangSC, PingFang SC;
  148. font-weight: 400;
  149. font-size: 36rpx;
  150. color: #060809;
  151. position: relative;
  152. .bage {
  153. position: absolute;
  154. left: 96%;
  155. top: -12rpx;
  156. background: #FA2918;
  157. font-family: Futura, Futura;
  158. font-weight: 500;
  159. font-size: 24rpx;
  160. color: #FFFFFF;
  161. display: inline-flex;
  162. justify-content: center;
  163. align-items: center;
  164. line-height: 16px;
  165. padding: 0 5px;
  166. border-radius: 68rpx;
  167. z-index: 9;
  168. }
  169. }
  170. .time {
  171. font-family: Futura, Futura;
  172. font-weight: 500;
  173. font-size: 32rpx;
  174. color: #060809;
  175. }
  176. }
  177. .device-info {
  178. display: flex;
  179. align-items: center;
  180. .img {
  181. width: 128rpx;
  182. height: 128rpx;
  183. background: #f2f2f2;
  184. margin-right: 24rpx;
  185. }
  186. .info {
  187. .name {
  188. font-family: PingFangSC, PingFang SC;
  189. font-weight: bold;
  190. font-size: 40rpx;
  191. color: #060809;
  192. margin-bottom: 32rpx;
  193. }
  194. .status {
  195. font-family: PingFangSC, PingFang SC;
  196. font-size: 32rpx;
  197. color: #426BF2;
  198. display: flex;
  199. &::before {
  200. content: "";
  201. width: 40rpx;
  202. height: 40rpx;
  203. margin-right: 16rpx;
  204. border-radius: 50%;
  205. background: url('https://qiniu.bms16.com/Foxu2x1lQKqT5K4LqrUtWIA6Lbw8');
  206. background-size: 100%;
  207. }
  208. }
  209. }
  210. }
  211. }
  212. .sys-msg-wrap {
  213. .row {
  214. margin-bottom: 40rpx;
  215. display: flex;
  216. justify-content: space-between;
  217. .title {
  218. font-family: PingFangSC, PingFang SC;
  219. font-weight: 400;
  220. font-size: 36rpx;
  221. color: #060809;
  222. position: relative;
  223. }
  224. .time {
  225. font-family: Futura, Futura;
  226. font-weight: 500;
  227. font-size: 32rpx;
  228. color: #060809;
  229. }
  230. }
  231. .bage {
  232. position: absolute;
  233. left: 96%;
  234. top: -12rpx;
  235. background: #FA2918;
  236. font-family: Futura, Futura;
  237. font-weight: 500;
  238. font-size: 24rpx;
  239. color: #FFFFFF;
  240. display: inline-flex;
  241. justify-content: center;
  242. align-items: center;
  243. line-height: 16px;
  244. padding: 0 5px;
  245. border-radius: 68rpx;
  246. z-index: 9;
  247. }
  248. .msg-item {
  249. padding: 40rpx 0;
  250. border-bottom: 1px solid #F1F4F5;
  251. &:last-child {
  252. border-bottom: none;
  253. }
  254. .flex {
  255. display: flex;
  256. }
  257. .dot {
  258. background: #FA2918;
  259. width: 20rpx;
  260. height: 20rpx;
  261. border-radius: 50%;
  262. margin-right: 5rpx;
  263. margin-top: 10rpx;
  264. }
  265. .msg {
  266. font-family: PingFangSC, PingFang SC;
  267. font-weight: bold;
  268. font-size: 36rpx;
  269. color: #060809;
  270. display: flex;
  271. align-items: center;
  272. justify-content: space-between;
  273. .btn {
  274. width: 192rpx;
  275. height: 64rpx;
  276. background: #060809;
  277. border-radius: 32rpx;
  278. color: #fff;
  279. display: flex;
  280. align-items: center;
  281. justify-content: center;
  282. font-family: AlibabaPuHuiTiM;
  283. font-size: 32rpx;
  284. &:active {
  285. opacity: 0.8;
  286. }
  287. }
  288. }
  289. .time {
  290. font-family: Futura, Futura;
  291. font-weight: 500;
  292. font-size: 24rpx;
  293. color: #060809;
  294. margin: 16rpx 0 24rpx;
  295. }
  296. .dtl {
  297. font-family: PingFangSC, PingFang SC;
  298. font-weight: 400;
  299. font-size: 24rpx;
  300. color: #060809;
  301. }
  302. }
  303. }
  304. }
  305. </style>