50 lines
725 B
Vue
50 lines
725 B
Vue
<template>
|
||
<view class="big-bgc">
|
||
<image class="big-imge" src="/static/creating.jpg" mode="aspectFill" />
|
||
<view class="big-font">
|
||
正在开发中,敬请期待...
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
|
||
}
|
||
},
|
||
methods: {
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.big-bgc {
|
||
display: flex;
|
||
text-align: center;
|
||
justify-content: center;
|
||
align-items: center;
|
||
min-width: 100vw;
|
||
height: 96vh;
|
||
margin-top: 1vw;
|
||
flex-direction: column;
|
||
background-color: #fff;
|
||
margin-left: 1vw;
|
||
border-radius: 30rpx;
|
||
|
||
.big-imge {
|
||
width: 15vw;
|
||
height: 15vw;
|
||
|
||
}
|
||
|
||
.big-font {
|
||
width: 100%;
|
||
font-size: 30rpx;
|
||
font-weight: 600;
|
||
}
|
||
}
|
||
</style>
|