仓库初始化+岗位相关页面

This commit is contained in:
2026-03-24 21:06:00 +08:00
commit 0468339d23
113 changed files with 18644 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_BASE_URL: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
+4
View File
@@ -0,0 +1,4 @@
declare module '*.png' {
const src: string
export default src
}
+5
View File
@@ -0,0 +1,5 @@
export interface ApiResponse<T> {
code: number
message: string
data: T
}