mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 08:46:35 +08:00
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
|
|
import {isAllEmpty} from "@pureadmin/utils";
|
||
|
|
|
||
|
|
export function getFileUrl(fileId: string, tryPath: string): string {
|
||
|
|
if (isAllEmpty(fileId)) {
|
||
|
|
return tryPath;
|
||
|
|
}
|
||
|
|
return `${import.meta.env.VITE_APP_BASE_API}/file/${fileId}`;
|
||
|
|
}
|