feat: init project with miniprogram, cloud functions and admin console

这个提交包含在:
Guoguo
2026-04-22 21:24:20 +08:00
当前提交 a84e37a6e2
修改 106 个文件,包含 5902 行新增0 行删除
+21
查看文件
@@ -0,0 +1,21 @@
<script>
import { useUserStore } from './store/user'
export default {
onLaunch() {
const userStore = useUserStore()
if (!userStore.isLoggedIn()) {
uni.reLaunch({ url: '/pages/login/index' })
}
}
}
</script>
<style>
page {
background-color: #f5f5f5;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
font-size: 14px;
color: #333333;
}
</style>