Blame view

src/api/file.js 280 Bytes
1 2 3 4 5 6
/*
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-05-16 13:36:44
 */

7
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
任超 committed
8 9 10
export function uploadUrl () {
    return process.env.VUE_APP_BASE_API + SERVER.SERVERAPI + '/file/upload'
}