feat: add TownsPage and router configuration

- Created TownsPage.vue to display a list of towns with filtering options and a modal for details.
- Implemented a router.js file to manage application routes, including the new towns page.
This commit is contained in:
zhangyuheng
2026-03-18 14:10:49 +08:00
parent d254ec86df
commit 5c6d389962
21 changed files with 5401 additions and 449 deletions

19
src/pages/DocPage.vue Normal file
View File

@@ -0,0 +1,19 @@
<template>
<iframe
class="iframe-fullpage"
src="https://schema.lunadeer.cn/public/libraries/wco40gb6blucloqv"
frameborder="0"
allowfullscreen
></iframe>
</template>
<style scoped>
.iframe-fullpage {
position: fixed;
top: var(--bl-header-height);
left: 0;
width: 100%;
height: calc(100vh - var(--bl-header-height));
border: none;
}
</style>