123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- <template>
- <view class="message-page">
- <navBar :name="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 v-if="isSys==='1' && sysMsgList.length > 0 " style="margin-top: 20rpx;" class="sys-msg-wrap base-wrap">
- <view class="row">
- <view class="title" style="display: flex;">
- <view>{{ $t('系统消息') }}</view>
- <view v-if="unreadCount > 0" class="bage">{{ unreadCount }}</view>
- </view>
- </view>
- <view @click="gotoDetail(item)" class="msg-item" v-for="(item, index) in sysMsgList" :key="index">
- <view class="msg">
- <view class="flex">
- <view v-if="item.read === '0'" class="dot"></view>
- {{ item.title }}
- </view>
- <view v-if="item.type === 1" class="btn">绑定设备</view>
- </view>
- <view class="time">{{ item.ctime }}</view>
- <view class="dtl">{{ item.overview }}</view>
- </view>
- </view>
- <view v-if="isSys==='1' && sysMsgList.length === 0 "
- style="display: flex;align-items: center;justify-content: center;height: 80vh;">
- 您还没有系统消息
- </view>
- </view>
- </template>
- <script>
- const config = require('@/common/config.js');
- const http = require('@/common/http.js');
- const request = require('@/common/request.js');
- const common = require('@/common/common.js');
- export default {
- data() {
- return {
- value: 10,
- sysMsgList: [],
- deviceList: [],
- deviceInfo: {},
- isSys: '1',
- unreadCount: 0
- }
- },
- onLoad(options) {
- this.isSys = options.isSys
- },
- created() {
- this.querySysMsgList()
- this.queryDeviceMsg()
- // this.readMessage()
- },
- methods: {
- async readMessage() {
- await request.postApi(config.API_MESSAGE_READ_MESSAGE, {
- msg_type: 2,
- car_id: 0
- })
- },
- gotoDetail(item) {
- request.postApi(config.API_MESSAGE_READ_MESSAGE, {
- msg_type: 2,
- msg_id : item.plat_msg_id,
- car_id: ''
- })
-
- uni.navigateTo({
- url: `/pages/message/detail?id=${item.plat_msg_id}`
- })
- },
- toDeviceMsgPage(itemData) {
- const {
- car_id
- } = itemData
- uni.navigateTo({
- url: `/pages/message/deviceInfo?car_id=${car_id}`
- })
- },
- queryDeviceMsg() {
- http.postApi(config.API_DEVICE_MSG, {}, res => {
- if (res.succeed) {
- this.deviceList = res.body.data
- this.deviceList.map(item => {
- item.message_date = common.formatTime(item.message_date)
- })
- }
- })
- },
- querySysMsgList() {
- http.postApi(config.API_MESSAGE_LIST, {
- msg_type: 'PLAT'
- }, res => {
- if (res.succeed) {
- this.sysMsgList = res.body.data.list
- this.sysMsgList.map(item => {
- item.ctime = common.formatTime(item.ctime)
- })
- this.unreadCount = this.sysMsgList.filter(item => item.read === "0").length;
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .message-page {
- width: 100%;
- min-height: 100vh;
- overflow: auto;
- background: #F1F3F4;
- padding: 0 24rpx;
- .base-wrap {
- background: #FFFFFF;
- border-radius: 40rpx;
- padding: 40rpx 32rpx 32rpx 32rpx;
- width: 100%;
- }
- .device-msg-wrap {
- margin: 24rpx 0;
- .row {
- margin-bottom: 40rpx;
- display: flex;
- justify-content: space-between;
- .title {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 36rpx;
- color: #060809;
- position: relative;
- .bage {
- position: absolute;
- left: 96%;
- top: -12rpx;
- background: #FA2918;
- font-family: Futura, Futura;
- font-weight: 500;
- font-size: 24rpx;
- color: #FFFFFF;
- display: inline-flex;
- justify-content: center;
- align-items: center;
- line-height: 16px;
- padding: 0 5px;
- border-radius: 68rpx;
- z-index: 9;
- }
- }
- .time {
- font-family: Futura, Futura;
- font-weight: 500;
- font-size: 32rpx;
- color: #060809;
- }
- }
- .device-info {
- display: flex;
- align-items: center;
- .img {
- width: 128rpx;
- height: 128rpx;
- background: #f2f2f2;
- margin-right: 24rpx;
- }
- .info {
- .name {
- font-family: PingFangSC, PingFang SC;
- font-weight: bold;
- font-size: 40rpx;
- color: #060809;
- margin-bottom: 32rpx;
- }
- .status {
- font-family: PingFangSC, PingFang SC;
- font-size: 32rpx;
- color: #426BF2;
- display: flex;
- &::before {
- content: "";
- width: 40rpx;
- height: 40rpx;
- margin-right: 16rpx;
- border-radius: 50%;
- background: url('https://qiniu.bms16.com/Foxu2x1lQKqT5K4LqrUtWIA6Lbw8');
- background-size: 100%;
- }
- }
- }
- }
- }
- .sys-msg-wrap {
- .row {
- margin-bottom: 40rpx;
- display: flex;
- justify-content: space-between;
- .title {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 36rpx;
- color: #060809;
- position: relative;
- }
- .time {
- font-family: Futura, Futura;
- font-weight: 500;
- font-size: 32rpx;
- color: #060809;
- }
- }
- .bage {
- position: absolute;
- left: 96%;
- top: -12rpx;
- background: #FA2918;
- font-family: Futura, Futura;
- font-weight: 500;
- font-size: 24rpx;
- color: #FFFFFF;
- display: inline-flex;
- justify-content: center;
- align-items: center;
- line-height: 16px;
- padding: 0 5px;
- border-radius: 68rpx;
- z-index: 9;
- }
- .msg-item {
- padding: 40rpx 0;
- border-bottom: 1px solid #F1F4F5;
- &:last-child {
- border-bottom: none;
- }
- .flex {
- display: flex;
- }
- .dot {
- background: #FA2918;
- width: 20rpx;
- height: 20rpx;
- border-radius: 50%;
- margin-right: 5rpx;
- margin-top: 10rpx;
- }
- .msg {
- font-family: PingFangSC, PingFang SC;
- font-weight: bold;
- font-size: 36rpx;
- color: #060809;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .btn {
- width: 192rpx;
- height: 64rpx;
- background: #060809;
- border-radius: 32rpx;
- color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- font-family: AlibabaPuHuiTiM;
- font-size: 32rpx;
- &:active {
- opacity: 0.8;
- }
- }
- }
- .time {
- font-family: Futura, Futura;
- font-weight: 500;
- font-size: 24rpx;
- color: #060809;
- margin: 16rpx 0 24rpx;
- }
- .dtl {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #060809;
- }
- }
- }
- }
- </style>
|