@@ -0,0 +1,18 @@
+<template>
+ <div>
+ <!--登录代理页面-->
+ </div>
+</template>
+<script>
+ export default {
+ name: 'login',
+ layout: 'login',
+ mounted () {
+ this.$http.get('/login/page', {params: {returnUrl: '/'}}).then(response => {
+ if (response.data) {
+ window.location.href = response.data.content + '&baseUrl=' + encodeURIComponent(window.location.protocol + '//' + window.location.host + response.data.baseUrl)
+ }
+ })
+</script>