123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <template>
- <view class="message-page">
- <view class="device-msg-wrap base-wrap" @tap="toDeviceMsgPage">
- <view class="row">
- <view class="title">
- <view>{{ $t('设备消息') }}</view>
- <view class="bage">{{ deviceInfo.unread }}</view>
- </view>
- <view class="time">06:57</view>
- </view>
- <view class="device-info">
- <image class="img" :src="deviceInfo.image" />
- <view class="info">
- <view class="name">{{ deviceInfo.car_name }}</view>
- <view class="status">异常震动</view>
- </view>
- </view>
- </view>
- <view class="sys-msg-wrap base-wrap">
- <view class="title">{{ $t('系统消息') }}</view>
- <view class="msg-item" v-for="(item, index) in sysMsgList" :key="index">
- <view class="msg">
- {{ item.title }}
- <view v-if="item.title" class="btn">绑定设备</view>
- </view>
- <view class="time">{{ item.ctime }}</view>
- <view class="dtl">{{ item.overview }}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- const config = require('@/common/config.js');
- const http = require('@/common/http.js');
- const common = require('@/common/common.js');
- export default {
- data() {
- return {
- value: 10,
- sysMsgList: [],
- deviceInfo: {}
- }
- },
- created() {
- this.querySysMsgList()
- this.queryDeviceMsg()
- // http.postApi(config.API_MESSAGE_DTL, { id: '7' }, res => {
- // })
- },
- methods: {
- toDeviceMsgPage() {
- const { car_id } = this.deviceInfo
- uni.navigateTo({ url: `/pages/message/deviceInfo?car_id=${car_id}` })
- },
- queryDeviceMsg() {
- http.postApi(config.API_DEVICE_MSG, {}, res => {
- if (res.succeed) {
- console.log(111, res.body)
- this.setData({
- deviceInfo: res.body.data[0]
- })
- }
- })
- },
- querySysMsgList() {
- http.postApi(config.API_MESSAGE_LIST, { msg_type: 'PLAT' }, res => {
- if (res.succeed) {
- this.setData({
- sysMsgList: res.body.data.list
- })
- console.log(111, res.body)
- }
- })
- }
- }
- }
- </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 {
- .title {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 36rpx;
- color: #060809;
- }
- .msg-item {
- padding: 40rpx 0;
- border-bottom: 1px solid #F1F4F5;
- &:last-child {
- border-bottom: none;
- }
- .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>
|