员工端h5版本代码提交

This commit is contained in:
andy
2026-06-16 15:12:54 +08:00
commit 43a617e5da
45 changed files with 4754 additions and 0 deletions

18
env.d.ts vendored Normal file
View File

@@ -0,0 +1,18 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_USE_MOCK?: string
readonly VITE_PROXY_TARGET?: string
readonly VITE_API_BASE_URL?: string
readonly VITE_AUTH_BASE?: string
readonly VITE_ADMIN_BASE?: string
readonly VITE_STAFF_BASE?: string
readonly VITE_HOTEL_BIZ_BASE?: string
readonly VITE_CLIENT_ID?: string
readonly VITE_CLIENT_SECRET?: string
readonly VITE_CLIENT_CONFIG_ID?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}