diff --git a/miniprogram/lefu/config.ts b/miniprogram/lefu/config.ts index 2a2ebaa..c3ccd82 100644 --- a/miniprogram/lefu/config.ts +++ b/miniprogram/lefu/config.ts @@ -8,8 +8,8 @@ const DOMAINS: Record = { domain2: 'http://10.10.10.10:8889/weight', }, trial: { - domain1: 'http://10.10.10.10:8889', - domain2: 'http://10.10.10.10:8889/weight', + domain1: 'http://device.shuziweidao.com:80/gateway', + domain2: 'http://device.shuziweidao.com:80/weight', }, release: { domain1: 'http://device.shuziweidao.com:80/gateway', diff --git a/miniprogram/utils/request/config.ts b/miniprogram/utils/request/config.ts index e87cd60..816653d 100644 --- a/miniprogram/utils/request/config.ts +++ b/miniprogram/utils/request/config.ts @@ -3,7 +3,7 @@ import { ENV, type EnvType } from '../env/index' /** 各环境接口网关地址:develop / trial 走测试网关,release 走正式网关 */ const BASE_URLS: Record = { develop: 'http://10.10.10.10:8889/', - trial: 'http://10.10.10.10:8889/', + trial: 'https://device.shuziweidao.com/gateway/', release: 'https://device.shuziweidao.com/gateway/', }