wl
2022-07-19 45ce1ac30e29ff9e5b91ae4d02947a43035efa4a
1
2
3
4
5
6
7
8
import {getImgUrl} from "@/api/common";
 
export function fileNameToPath(val) {
    if (val === '' || val === null) return './logo.png';
    getImgUrl(val).then(res => {
        return res
    })
}