1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view class="flex">
- <image src="/static/imgs/shop/logo_1.png" mode="widthFix" style="width: 642rpx;margin-top: 76rpx;"></image>
- <image src="/static/imgs/shop/bottom.png" mode="widthFix" style="width: 310rpx;margin-top: 116rpx;">
- </image>
- <view class="title">系统维护,请耐心等待...</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- }
- </script>
- <style lang="scss">
- page {
- background-color: #fff;
- }
- .flex {
- display: flex;
- align-items: center;
- flex-direction: column;
- .title {
- color: #333333;
- font-size: 40rpx;
- font-weight: bold;
- margin-top: 136rpx;
- }
- .tip {
- width: 560rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #999999;
- margin-top: 40rpx;
- line-height: 44rpx;
- }
- }
- .login_out {
- width: 220rpx;
- height: 88rpx;
- // background: #007AFF;
- margin-top: 140rpx;
- color: #999;
- font-size: 30rpx;
- color: $base-color;
- }
- </style>
|