lex 9 månader sedan
förälder
incheckning
47697644c9
2 ändrade filer med 36 tillägg och 36 borttagningar
  1. 1 1
      public/version.json
  2. 35 35
      src/utils/urlUtils.ts

+ 1 - 1
public/version.json

@@ -1 +1 @@
-{"version":1717465972492}
+{"version":1717658760357}

+ 35 - 35
src/utils/urlUtils.ts

@@ -1,35 +1,35 @@
-export function vaildUrl() {
-  const url: string = window.location.href;
-  let returnUrl = '';
-  if (/test/.test(url)) {
-    // dev 环境
-    returnUrl = 'https://test.kt.colexiu.com';
-  } else if (/dev/.test(url)) {
-    returnUrl = 'https://dev.kt.colexiu.com';
-  } else if (/localhost/.test(url)) {
-    //   //本地环境
-    returnUrl = 'https://test.kt.colexiu.com';
-  } else {
-    // 默认dev环境
-    returnUrl = 'https://kt.colexiu.com';
-  }
-  return returnUrl;
-}
-
-export function vaildMusicScoreUrl() {
-  const url: string = window.location.href;
-  let returnUrl = '';
-
-  if (/test/.test(url)) {
-    // dev 环境
-    returnUrl = 'https://test.kt.colexiu.com';
-  } else if (/dev/.test(url)) {
-    returnUrl = 'https://dev.kt.colexiu.com';
-  } else if (/localhost/.test(url)) {
-    //   //本地环境
-    returnUrl = 'https://test.kt.colexiu.com';
-  } else {
-    returnUrl = 'https://mec.colexiu.com';
-  }
-  return returnUrl;
-}
+export function vaildUrl() {
+  const url: string = window.location.hostname;
+  let returnUrl = '';
+  if (/test/.test(url)) {
+    // dev 环境
+    returnUrl = 'https://test.kt.colexiu.com';
+  } else if (/dev/.test(url)) {
+    returnUrl = 'https://dev.kt.colexiu.com';
+  } else if (/localhost/.test(url)) {
+    //   //本地环境
+    returnUrl = 'https://test.kt.colexiu.com';
+  } else {
+    // 默认dev环境
+    returnUrl = 'https://kt.colexiu.com';
+  }
+  return returnUrl;
+}
+
+export function vaildMusicScoreUrl() {
+  const url: string = window.location.hostname;
+  let returnUrl = '';
+
+  if (/test/.test(url)) {
+    // dev 环境
+    returnUrl = 'https://test.kt.colexiu.com';
+  } else if (/dev/.test(url)) {
+    returnUrl = 'https://dev.kt.colexiu.com';
+  } else if (/localhost/.test(url)) {
+    //   //本地环境
+    returnUrl = 'https://test.kt.colexiu.com';
+  } else {
+    returnUrl = 'https://mec.colexiu.com';
+  }
+  return returnUrl;
+}