2025-08-29 12:06:02 +08:00
|
|
|
<template>
|
2025-09-01 16:55:44 +08:00
|
|
|
<a-config-provider
|
2025-09-02 17:05:10 +08:00
|
|
|
:locale="locale"
|
2025-09-01 16:55:44 +08:00
|
|
|
:theme="{
|
|
|
|
|
token: {
|
|
|
|
|
colorPrimary: '#143d7d'
|
|
|
|
|
}
|
|
|
|
|
}"
|
|
|
|
|
>
|
2025-08-29 12:06:02 +08:00
|
|
|
<router-view />
|
2025-09-01 16:55:44 +08:00
|
|
|
</a-config-provider>
|
2025-08-29 12:06:02 +08:00
|
|
|
</template>
|
2025-09-02 17:05:10 +08:00
|
|
|
<script setup>
|
|
|
|
|
import {ref} from 'vue'
|
|
|
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN'
|
|
|
|
|
const locale = ref(zhCN)
|
|
|
|
|
|
|
|
|
|
</script>
|
2025-08-29 12:06:02 +08:00
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
#app {
|
2025-08-29 14:57:13 +08:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
2025-09-01 16:55:44 +08:00
|
|
|
min-width: 1440px;
|
|
|
|
|
min-height: 900px;
|
2025-09-04 13:42:48 +08:00
|
|
|
color: #fff;
|
2025-08-29 12:06:02 +08:00
|
|
|
}
|
|
|
|
|
</style>
|