Browse Source

Merge branch 'iteration-large-version' into jenkins

lex 1 year ago
parent
commit
45d734a98c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/utils/urlUtils.ts

+ 2 - 2
src/utils/urlUtils.ts

@@ -3,10 +3,10 @@ export function vaildUrl() {
   let returnUrl = '';
   if (/192/.test(url) || /localhost/.test(url)) {
     //本地环境
-    returnUrl = 'https://test.lexiaoya.cn';
+    returnUrl = 'https://test.kt.colexiu.com';
   } else if (/test/.test(url)) {
     // dev 环境
-    returnUrl = 'https://test.lexiaoya.cn';
+    returnUrl = 'https://test.kt.colexiu.com';
   } else if (/dev/.test(url)) {
     returnUrl = 'https://dev.kt.colexiu.com';
   } else {