04f7ff0317
- Backend: guest UUID format fix, /auth/me guest branch, UUID validation in deps.py, CORS config fix - Frontend: switch to native tabbar (custom: false), cleanup App.vue, redesign quick-actions with colored icons, conditional wechat login, proxy API requests via Vite
32 lines
560 B
Vue
32 lines
560 B
Vue
<template>
|
|
<!-- Uni-app manages its own page/tabbar structure. App.vue only provides global styles. -->
|
|
<router-view />
|
|
</template>
|
|
|
|
<script setup>
|
|
// App root - uni-app framework handles page layout and tab bar
|
|
</script>
|
|
|
|
<style>
|
|
/* Global reset */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body, #app {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Let uni-app framework manage layout for native tabbar */
|
|
uni-page {
|
|
overflow-y: auto !important;
|
|
}
|
|
uni-page-body {
|
|
overflow-y: auto !important;
|
|
min-height: 100% !important;
|
|
}
|
|
</style>
|