|
@@ -1,25 +1,31 @@
|
|
<template>
|
|
<template>
|
|
<view class="message-page">
|
|
<view class="message-page">
|
|
- <navBar name="我的消息"></navBar>
|
|
|
|
- <view class="device-msg-wrap base-wrap" v-for="(item, index) in deviceList" :key="index" @tap="toDeviceMsgPage(item)">
|
|
|
|
- <view class="row">
|
|
|
|
- <view class="title">
|
|
|
|
- <view>{{ $t('设备消息') }}</view>
|
|
|
|
- <view v-if="item.unread > 0" class="bage">{{ item.unread }}</view>
|
|
|
|
- </view>
|
|
|
|
- <view class="time">{{item.message_date}}</view>
|
|
|
|
- </view>
|
|
|
|
- <view class="device-info">
|
|
|
|
- <image class="img" :src="item.image" />
|
|
|
|
- <view class="info">
|
|
|
|
- <view class="name">{{ item.car_name }}</view>
|
|
|
|
- <view class="status">{{item.message_overview}}</view>
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
|
|
+ <navBar :name=" options.isSys === '0' ? '设备信息' : '我的消息'"></navBar>
|
|
|
|
+ <view v-if="isSys==='0' && deviceList.length>0">
|
|
|
|
+ <view class="device-msg-wrap base-wrap" v-for="(item, index) in deviceList" :key="index" @tap="toDeviceMsgPage(item)">
|
|
|
|
+ <view class="row">
|
|
|
|
+ <view class="title">
|
|
|
|
+ <view>{{ $t('设备消息') }}</view>
|
|
|
|
+ <view v-if="item.unread > 0" class="bage">{{ item.unread }}</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="time">{{item.message_date}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="device-info">
|
|
|
|
+ <image class="img" :src="item.image" />
|
|
|
|
+ <view class="info">
|
|
|
|
+ <view class="name">{{ item.car_name }}</view>
|
|
|
|
+ <view v-if="item.message_overview!==''" class="status">{{item.message_overview}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view v-if="isSys==='0' && deviceList.length === 0" style="display: flex;align-items: center;justify-content: center;height: 80vh;">
|
|
|
|
+ 您还没有设备消息
|
|
|
|
+ </view>
|
|
|
|
|
|
- <view style="margin-top: 20rpx;" class="sys-msg-wrap base-wrap">
|
|
|
|
|
|
+ <view v-if="isSys==='1' && sysMsgList.length > 0 " style="margin-top: 20rpx;" class="sys-msg-wrap base-wrap">
|
|
<view class="title">{{ $t('系统消息') }}</view>
|
|
<view class="title">{{ $t('系统消息') }}</view>
|
|
|
|
+
|
|
<view class="msg-item" v-for="(item, index) in sysMsgList" :key="index">
|
|
<view class="msg-item" v-for="(item, index) in sysMsgList" :key="index">
|
|
<view class="msg">
|
|
<view class="msg">
|
|
{{ item.title }}
|
|
{{ item.title }}
|
|
@@ -29,6 +35,10 @@
|
|
<view class="dtl">{{ item.overview }}</view>
|
|
<view class="dtl">{{ item.overview }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+
|
|
|
|
+ <view v-if="isSys==='1' && sysMsgList.length === 0 " style="display: flex;align-items: center;justify-content: center;height: 80vh;">
|
|
|
|
+ 您还没有系统消息
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -43,9 +53,13 @@ export default {
|
|
value: 10,
|
|
value: 10,
|
|
sysMsgList: [],
|
|
sysMsgList: [],
|
|
deviceList: [],
|
|
deviceList: [],
|
|
- deviceInfo: {}
|
|
|
|
|
|
+ deviceInfo: {},
|
|
|
|
+ isSys:'1'
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ onLoad(options){
|
|
|
|
+ this.isSys = options.isSys
|
|
|
|
+ },
|
|
created() {
|
|
created() {
|
|
this.querySysMsgList()
|
|
this.querySysMsgList()
|
|
this.queryDeviceMsg()
|
|
this.queryDeviceMsg()
|