odc.xiaohui
2023-05-22 1cc4da26c0dfb93bb3b9800f2c82988cfc4af3d6
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
    })
}