odc.xiaohui
2023-03-09 1d2a1d47ee9ecc1b84cf472546a950915fc02588
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
    })
}