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