12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div class="home">
- </div>
- </template>
- <script>
- // @ is an alias to /src
- import Trend from '@/components/Trend'
- import { WindowsFill } from '@ant-design/icons/lib/dist';
- export default {
- name: 'Index',
- components: {
- Trend,
- },
- data () {
- return {
- targetTime: new Date().getTime() + 3900000
- }
- },
- created(){
- window.location.href = 'http://172.18.91.12:8888/sso/oauth/authorize?client_id=OAManager&response_type=code&redirect_url=http://172.18.91.36:8083/#/redirect/login'
- },
- methods: {
-
- }
- }
- </script>
- <style scoped>
- .home {
- width: 900px;
- margin: 0 auto;
- padding: 25px 0;
- }
- .home > .banner {
- text-align: center;
- padding: 25px 0;
- margin: 25px 0;
- }
- </style>
|