| 123456789101112131415 |
- <template>
- </template>
- <script>
- export default {
- layout: 'login',
- mounted () {
- this.$http.get('/login/page', {params: {returnUrl: window.location.protocol + '//' + window.location.host}}).then(response => {
- if (response.data) {
- window.location.href = response.data.content + '&baseUrl=' + encodeURIComponent(window.location.protocol + '//' + window.location.host + response.data.baseUrl)
- }
- })
- }
- }
- </script>
|