login.vue 462 B

123456789101112131415
  1. <template>
  2. </template>
  3. <script>
  4. export default {
  5. layout: 'login',
  6. mounted () {
  7. this.$http.get('/login/page', {params: {returnUrl: window.location.protocol + '//' + window.location.host}}).then(response => {
  8. if (response.data) {
  9. window.location.href = response.data.content + '&baseUrl=' + encodeURIComponent(window.location.protocol + '//' + window.location.host + response.data.baseUrl)
  10. }
  11. })
  12. }
  13. }
  14. </script>