소스 검색

修改访问的地址

lex-xin 5 년 전
부모
커밋
623c30c30e
6개의 변경된 파일13개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 0
      dist/app.6f1bcc065a4fa99c2362.js
  2. 0 0
      dist/css/ClassDetail.fa3f70b1.css
  3. 0 0
      dist/index.html
  4. 0 0
      dist/js/ClassDetail.49b9a525.js
  5. 0 0
      dist/js/ClassDetail.602dc0d8.js
  6. 13 1
      src/views/app/ClassDetail.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/app.6f1bcc065a4fa99c2362.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/css/ClassDetail.fa3f70b1.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/js/ClassDetail.49b9a525.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/js/ClassDetail.602dc0d8.js


+ 13 - 1
src/views/app/ClassDetail.vue

@@ -114,7 +114,11 @@ export default {
                         }).then(() => {
                             // this.$router.push('/studentDownLoad')
                             // window.location.href = 'https://mstuonline.dayaedu.com/#/studentDownload'
-                            window.location.href = 'https://mstuonline.dayaedu.com/#/transfer'
+                            if(this.checkUrl()) {
+                                window.location.href = 'https://mstuonline.dayaedu.com/#/transfer'
+                            } else {
+                                window.location.href = 'http://mstudev.dayaedu.com/#/transfer'
+                            }
                         });
                     } else if(result.code == 302) {
                         this.onSubmitStatus = true
@@ -132,6 +136,14 @@ export default {
             }).catch(() => {
             // on cancel
             });
+        },
+        checkUrl() {
+            let url = window.location.href
+            if(/mteaonline/ig.test(url)) {
+                return true
+            } else {
+                return false
+            }
         }
     },
     filters: {

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.