You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
459 B
14 lines
459 B
/**
|
|
* 解析背景图/图片 URL
|
|
* - data:image/... (base64) 或 http(s):// 开头:原样返回
|
|
* - 否则视为若依 profile 路径,拼接 base API
|
|
*/
|
|
export function resolveImageUrl(img) {
|
|
if (!img) return ''
|
|
if (img.startsWith('data:') || img.startsWith('http://') || img.startsWith('https://')) {
|
|
return img
|
|
}
|
|
const base = process.env.VUE_APP_BASE_API || ''
|
|
const path = img.startsWith('/') ? img : '/' + img
|
|
return base + path
|
|
}
|
|
|