1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <div class="main">
- <img class="img" src="@/assets/images/global/temp.png" />
- <div class="text">敬请期待</div>
- <div class="text2">程序员正在开发建设中</div>
- </div>
- </template>
- <script lang="ts">
- import { defineComponent } from 'vue'
- export default defineComponent({
- name: '',
- components: {},
- setup() {
- return {}
- }
- })
- </script>
- <style scoped lang="scss">
- .main {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- .text {
- font-family: MicrosoftYaHei;
- font-size: 18px;
- font-weight: normal;
- font-stretch: normal;
- letter-spacing: 0px;
- color: #409eff;
- }
- .text2 {
- font-family: MicrosoftYaHei;
- font-size: 14px;
- font-weight: normal;
- font-stretch: normal;
- letter-spacing: 0px;
- color: #999999;
- }
- }
- </style>
|