index.vue 7.3 KB

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