1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| <template>
| <div>
| <Card style="min-height:85vh">
| <div class="sso">
| <img class="icon" src="@/assets/logo-min.png" />
| <h2>
| 请点击前往站点
| <a href="http://sso.exrick.cn" target="_blank">sso.exrick.cn</a> 进行测试
| </h2>
| <a href="http://sso.exrick.cn" target="_blank">
| <Button type="primary" style="margin-top:20px;">立即前往另一站点</Button>
| </a>
| </div>
| </Card>
| </div>
| </template>
|
| <script>
| export default {
| name: "sso",
| data() {
| return {};
| },
| methods: {},
| mounted() {}
| };
| </script>
|
| <style lang="less">
| .sso {
| height: 50vh;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| .icon {
| width: 100px;
| }
| }
| </style>
|
|