mo před 2 roky
rodič
revize
4b358b0c49
1 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. 4 4
      src/helpers/validate.ts

+ 4 - 4
src/helpers/validate.ts

@@ -4,19 +4,19 @@ export function vaildStudentUrl() {
   let returnUrl = ''
   if (/dev/.test(url)) {
     // dev 环境
-    returnUrl = 'http://mstudev.dayaedu.com'
+    returnUrl = 'https://dev.colexiu.com'
     return returnUrl
   } else if (/online/.test(url)) {
     //线上
-    returnUrl = 'https://mstuonline.dayaedu.com'
+    returnUrl = 'https://dev.colexiu.com'
     return returnUrl
   } else if (/test/.test(url)) {
     // dev 环境
-    returnUrl = 'http://mstutest.dayaedu.com'
+    returnUrl = 'https://dev.colexiu.com'
     return returnUrl
   } else {
     // 默认dev环境
-    returnUrl = 'http://mstudev.dayaedu.com'
+    returnUrl = 'https://dev.colexiu.com'
     return returnUrl
   }
   return returnUrl