Files
energy_storage/web/src/views/system/index.vue
zhoumengru 2ad56d3203 feat(web): 新增系统管理功能并优化界面样式
- 更新路由配置,调整页面结构
- 优化主题样式,自定义 ant-design 样式
- 新增全局样式,包括滚动条、按钮、模态框等
2025-09-01 16:55:44 +08:00

36 lines
368 B
Vue

<template>
<div class="system">
<router-view/>
</div>
</template>
<script>
export default {
name: '',
components:{
},
props: {
},
data() {
return {
}
},
mounted() {
},
methods:{
},
}
</script>
<style lang="scss" scoped>
.system{
width: 100%;
height: 100%;
background: $bg1-color;
border-radius: 15px;
}
</style>