2026-01-19 15:37:36 +08:00
|
|
|
|
<template>
|
2026-03-05 16:07:32 +08:00
|
|
|
|
<view class="big-bgc">
|
|
|
|
|
|
<image class="big-imge" src="/static/creating.jpg" mode="aspectFill" />
|
|
|
|
|
|
<view class="big-font">
|
|
|
|
|
|
正在开发中,敬请期待...
|
2026-01-19 15:37:36 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
export default {
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2026-03-05 16:07:32 +08:00
|
|
|
|
<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;
|
2026-01-19 15:37:36 +08:00
|
|
|
|
|
2026-03-05 16:07:32 +08:00
|
|
|
|
.big-imge {
|
|
|
|
|
|
width: 15vw;
|
|
|
|
|
|
height: 15vw;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.big-font {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2026-01-19 15:37:36 +08:00
|
|
|
|
</style>
|