ts_aimz_uni/common/js/net/mainUrl.js

21 lines
615 B
JavaScript
Raw Normal View History

2025-05-15 16:54:07 +08:00
// 定义api服务地址
2025-05-30 17:38:28 +08:00
const appUrl = 'https://www.aimzhu.com'
// const appUrl = 'http://121.36.71.250:58038'
const operatorUrl = appUrl + '/operator';
const operatorPlug = appUrl + '/operator-plugin'
const copyrightUrl = appUrl + '/copyright';
2025-05-15 16:54:07 +08:00
const uploadImgUrl = copyrightUrl + '/api/file/v2/upload-image'
const previewUrl = copyrightUrl + '/route/file/v2/download/true/'
const downloadFileUrl = '/route/file/download/true/'
const imgAssets = appUrl + '/miniapp-assets'
2025-05-15 16:54:07 +08:00
export {
operatorUrl,
operatorPlug,
uploadImgUrl,
previewUrl,
copyrightUrl,
imgAssets,
appUrl,
downloadFileUrl
2025-05-15 16:54:07 +08:00
}