123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view class="content">
- <top></top>
- <view class="jqqd"><image src="../../static/img/xwjl.png" mode=""></image></view>
- <view class="font">功能开发中,敬请期待</view>
- <view class="bottom"><image src="../../static/img/bottom.png" mode=""></image></view>
- </view>
- </template>
- <script>
- import top from '@/components/top/top.vue';
- export default {
- comments: {
- top
- },
- data() {
- return {};
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- height: 100%;
- // min-height: 100%;
- background: #000000;
- }
- .jqqd {
- width: 524rpx;
- height: 538rpx;
- padding-top: 250rpx;
- margin: 0 auto 0;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .font {
- margin-top: 56rpx;
- text-align: center;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- }
- .bottom {
- position: absolute;
- bottom: 0;
- width: 750rpx;
- height: 588rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- </style>
|