wl
2022-07-21 9b3de9ec4980c4b4acc8093a6e86dc14bc73292b
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
    })
}