mo vor 2 Jahren
Ursprung
Commit
4b358b0c49
1 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen
  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