This commit is contained in:
wushumin
2026-05-11 15:28:27 +08:00
commit 9aac78b8da
289 changed files with 67193 additions and 0 deletions

17
user-app/src/App.vue Normal file
View File

@@ -0,0 +1,17 @@
<script setup lang="ts">
import { onLaunch, onShow, onHide } from "@dcloudio/uni-app";
import { ensureAuthenticatedPageAccess } from "./utils/auth";
onLaunch(() => {
ensureAuthenticatedPageAccess();
});
onShow(() => {
ensureAuthenticatedPageAccess();
});
onHide(() => {
// noop
});
</script>
<style lang="scss">
@use "./styles/tokens.scss";
@use "./styles/app.scss";
</style>