feat:新增岗位管理

This commit is contained in:
chenchun
2024-09-04 16:24:26 +08:00
parent ad78cb1bcd
commit e393e1f525
19 changed files with 782 additions and 87 deletions

View File

@@ -0,0 +1,8 @@
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}`;
}