<template>
|
<div class="developing-layout">
|
<div class="developing-layout-inner">
|
<img :src="IconDeveloping" class="developing-layout-icon" />
|
<div class="developing-layout-text">功能开发中...</div>
|
</div>
|
</div>
|
</template>
|
|
<script setup lang="ts">
|
import IconDeveloping from '@/assets/icon-developing.png';
|
|
defineOptions({
|
name: 'DevelopingLayout',
|
});
|
|
// type Props = {};
|
|
// const props = withDefaults(defineProps<Props>(), {});
|
</script>
|
|
<style lang="scss">
|
@import '@/styles/common.scss';
|
|
.developing-layout {
|
height: 100%;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
|
.developing-layout-inner {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
|
.developing-layout-icon {
|
width: 240px;
|
height: 240px;
|
margin-bottom: 26px;
|
}
|
|
.developing-layout-text {
|
font-size: 32px;
|
color: boleGetCssVar('text-color', 'primary');
|
}
|
}
|
}
|
</style>
|