【前端】云工厂的纸掌柜app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.4 KiB

<template>
<view class="platform-info">
<view>
<uni-nav-bar left-icon="back" @clickLeft="back" statusBar fixed title="">
<view class="platform-info-title">消息详情</view>
<view slot="left"></view>
</uni-nav-bar>
</view>
<view class="platform-info-main">
<view class="platform-info-text">
<text>关于12/29日纸掌柜系统维护公告</text>
</view>
<view class="platform-info-contant">
尊敬的用户您好
因服务升级需要纸掌柜将于2021年11月31
进行系统升级
</view>
<view class="platform-info-time">
2021/12/29 12:30:45
</view>
</view>
</view>
</template>
<script>
import { back, go2 } from '@/utils/hook.js'
export default {
data() {
return {
}
},
methods: {
back
}
}
</script>
<style lang="scss">
.platform-info{
.platform-info-title {
width: 100%;
font-size: 36rpx;
color: #000000;
letter-spacing: 0;
text-align: center;
font-weight: 500;
}
.platform-info-main{
padding: 20rpx 32rpx;
background: #FFFFFF;
line-height: 60rpx;
}
.platform-info-text {
font-size: 32rpx;
color: #333333;
letter-spacing: 0;
font-weight: 600;
}
.platform-info-contant{
font-size: 28rpx;
color: #888888;
letter-spacing: 0;
font-weight: 400;
}
.platform-info-time{
font-size: 24rpx;
color: #333333;
font-weight: 400;
}
}
</style>