24 lines
328 B
Vue
24 lines
328 B
Vue
|
<template>
|
||
|
<view class="help-outer">
|
||
|
<text class="ts-text">系统暂未开放...</text>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.help-outer{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
height: 20rem;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.ts-text{
|
||
|
text-align: center;
|
||
|
font-size: 3rem;
|
||
|
}
|
||
|
|
||
|
|
||
|
</style>
|