Files
xj-admin/mobile/src/hooks/fileUrl.ts
T
2025-06-27 17:42:38 +08:00

9 lines
214 B
TypeScript

/*
* 获取文件、 图片前缀地址
* */
export const getFileUrl = (url: string) => {
const getUrl = sessionStorage.getItem('url');
const prefix = `${getUrl}/file/show/${url}`;
return prefix;
};