mo 2 年之前
父节点
当前提交
4b358b0c49
共有 1 个文件被更改,包括 4 次插入4 次删除
  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