fix: 修复开放接口鉴权与小程序联调配置

- 注册小程序租户过滤器并放宽 /api/open 路径匹配

- 移除全局异常吞没逻辑并修复律师列表筛选空值处理

- 统一小程序 develop、trial、release 环境接口域名
This commit is contained in:
2026-03-21 11:18:04 +08:00
parent 728847a8e3
commit ac7eb6d85d
5 changed files with 30 additions and 17 deletions

View File

@@ -9,8 +9,8 @@ export interface TenantRuntimeConfig {
// develop 环境允许本地联调trial/release 请替换为已备案且已配置到小程序后台“服务器域名”的 HTTPS 域名。
export const tenantRuntimeConfig: TenantRuntimeConfig = {
apiBaseUrlByEnv: {
develop: 'http://127.0.0.1:8112',
trial: 'https://trial-api.example.com',
release: 'https://api.example.com',
develop: 'https://easyflowtech.cn/card',
trial: 'https://easyflowtech.cn/card',
release: 'https://easyflowtech.cn/card',
},
};