sparkles: 物料库存导出excel
All checks were successful
Release / lint (push) Successful in 49s
Release / Release (push) Successful in 1m53s

This commit is contained in:
my_ong
2025-03-15 17:41:49 +08:00
parent 21f10b6e88
commit 994fd58bb0
7 changed files with 93 additions and 1 deletions

View File

@@ -1,9 +1,11 @@
export interface Http {
prefix: string // 前缀
timeout: number
downloadUrl: string
}
export const http: Http = {
prefix: import.meta.env.VITE_HTTP_PREFIX,
timeout: 10 * 1000,
downloadUrl: import.meta.env.VITE_UPLOAD_PREFIX,
}