|
@@ -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: {
|