14 lines
459 B
JavaScript
14 lines
459 B
JavaScript
/**
|
||
* 医生端业务静态图 OSS 前缀
|
||
* tabbar 图标仍走本地 static/image,其它图上传后按原相对路径拼接
|
||
*/
|
||
export const STATIC_OSS = 'https://xiaokang88.oss-cn-hangzhou.aliyuncs.com/xk-doctor-wx/static/'
|
||
|
||
/**
|
||
* 把 static 下相对路径转成 OSS 完整地址
|
||
* @param {string} rel 如 image/none.png(不要带 /static 前缀)
|
||
*/
|
||
export function staticOss(rel) {
|
||
return STATIC_OSS + String(rel || '').replace(/^\/+/, '')
|
||
}
|