fix(config): 更新API基础URL配置

- 将开发环境API_BASE_URL从mp-api.websoft.top更改为cms-api.websoft.top
- 将生产环境API_BASE_URL从mp-api.websoft.top更改为cms-api.websoft.top
- 将测试环境API_BASE_URL从mp-api.s209.websoft.top更改为cms-api.s209.websoft.top
- 更新SimpleQRCodeModal组件中的二维码生成API地址为cms-api.websoft.top
This commit is contained in:
2026-01-27 16:53:13 +08:00
parent aff888794f
commit a4938fbe31
2 changed files with 4 additions and 4 deletions

View File

@@ -81,7 +81,7 @@ const SimpleQRCodeModal: React.FC<SimpleQRCodeModalProps> = ({
{qrContent ? (
<View className={'flex flex-col justify-center'}>
<img
src={`https://mp-api.websoft.top/api/qr-code/create-encrypted-qr-image?size=300x300&expireMinutes=60&businessType=gift&data=${encodeURIComponent(qrContent)}`}
src={`https://cms-api.websoft.top/api/qr-code/create-encrypted-qr-image?size=300x300&expireMinutes=60&businessType=gift&data=${encodeURIComponent(qrContent)}`}
alt="二维码"
style={{width: '200px', height: '200px'}}
className="mx-auto"