ts_aimz/net/mainUrl.js

26 lines
728 B
JavaScript
Raw Normal View History

// 定义api服务地址
2025-06-09 17:02:32 +08:00
const appUrl = 'https://www.aimzhu.com'
const prewBaseUrl = ''
const operatorUrl = appUrl + '/operator'
const operatorPlug = appUrl + '/operator-plugin'
const copyrightUrl = appUrl + '/copyright'
const aiShopUrl = appUrl + '/aishop'
const uploadImgUrl = copyrightUrl + '/api/file/v2/upload-image'
const previewUrl = copyrightUrl + '/route/file/v2/download/true/'
2025-06-09 17:02:32 +08:00
const imgAssets = appUrl + '/miniapp-assets'
const sImgPrefix = aiShopUrl + '/route/file/download/true/'
const upShopImgUrl = aiShopUrl + '/api/file/v2/upload-image'
export {
operatorUrl,
operatorPlug,
uploadImgUrl,
previewUrl,
copyrightUrl,
2025-06-05 17:21:24 +08:00
aiShopUrl,
2025-05-06 14:04:00 +08:00
imgAssets,
2025-06-09 17:02:32 +08:00
appUrl,
sImgPrefix,
upShopImgUrl
}