2025-04-29 17:38:52 +08:00
|
|
|
// 定义api服务地址
|
2025-06-16 15:04:57 +08:00
|
|
|
const appUrl = 'https://www.aimzhu.com'
|
|
|
|
// const appUrl = 'http://121.36.71.250:58038'
|
2025-06-09 17:02:32 +08:00
|
|
|
const prewBaseUrl = ''
|
|
|
|
const operatorUrl = appUrl + '/operator'
|
|
|
|
const operatorPlug = appUrl + '/operator-plugin'
|
|
|
|
const copyrightUrl = appUrl + '/copyright'
|
|
|
|
const aiShopUrl = appUrl + '/aishop'
|
2025-04-29 17:38:52 +08:00
|
|
|
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'
|
2025-06-16 15:04:57 +08:00
|
|
|
const upShopFileUrl = aiShopUrl + '/api/file/v2/upload-file'
|
2025-06-09 17:02:32 +08:00
|
|
|
|
2025-04-29 17:38:52 +08:00
|
|
|
|
|
|
|
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,
|
2025-06-16 15:04:57 +08:00
|
|
|
upShopImgUrl,
|
|
|
|
upShopFileUrl
|
2025-04-29 17:38:52 +08:00
|
|
|
}
|