refactor: 界面样式重构优化

This commit is contained in:
Ray.Hao
2026-03-13 00:04:42 +08:00
parent 5348ddad36
commit 306d167a55
52 changed files with 3391 additions and 1459 deletions

View File

@@ -0,0 +1,26 @@
<template>
<view class="page">
<web-view :src="monitorUrl" />
</view>
</template>
<script setup lang="ts">
import { ref } from "vue";
// SpringBoot Admin 监控地址
const monitorUrl = ref("http://localhost:9090/wallboard");
</script>
<style lang="scss" scoped>
.page {
width: 100%;
height: 100vh;
}
</style>
<route lang="json">
{
"name": "monitor",
"style": { "navigationBarTitleText": "应用监控" }
}
</route>