odc.xiaohui
2023-04-23 7d10d58886a050e2b85edc09cf0c5f48d04a1258
1
2
3
4
5
6
7
8
import {getImgUrl} from "@/api/common";
 
export function fileNameToPath(val) {
    if (val === '' || val === null) return './logo.jpg';
    getImgUrl(val).then(res => {
        return res
    })
}