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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
| <template>
| <div class="app-container home">
| <!-- <h1 style="color:#07dbff;background-color:white">Test</h1> -->
| <home-page />
|
| </div>
| </template>
|
| <script>
| import HomePage from './home';
| import { login, logout, getInfo } from '@/api/login'
| import { getToken, setToken, removeToken } from '@/utils/auth'
|
| export default {
| name: "Index",
| components:{
| HomePage
| },
| data() {
| return {
| // 版本号
| version: "3.7.0"
| };
| },
| created() {
| this.defaultAccountLogin();
| },
| methods: {
| goTarget(href) {
| window.open(href, "_blank");
| },
|
| //系统默认账号登录
| defaultAccountLogin(){
|
| },
| },
| };
| </script>
|
| <style scoped lang="scss">
| .home {
| height: 100%;
| blockquote {
| padding: 10px 20px;
| margin: 0 0 20px;
| font-size: 17.5px;
| border-left: 5px solid #eee;
| }
| hr {
| margin-top: 20px;
| margin-bottom: 20px;
| border: 0;
| border-top: 1px solid #eee;
| }
| .col-item {
| margin-bottom: 20px;
| }
|
| ul {
| padding: 0;
| margin: 0;
| }
|
| font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
| font-size: 13px;
| color: #676a6c;
| overflow-x: hidden;
| overflow-y: hidden;
|
| ul {
| list-style-type: none;
| }
|
| h4 {
| margin-top: 0px;
| }
|
| h2 {
| margin-top: 10px;
| font-size: 26px;
| font-weight: 100;
| }
|
| p {
| margin-top: 10px;
|
| b {
| font-weight: 700;
| }
| }
|
| .update-log {
| ol {
| display: block;
| list-style-type: decimal;
| margin-block-start: 1em;
| margin-block-end: 1em;
| margin-inline-start: 0;
| margin-inline-end: 0;
| padding-inline-start: 40px;
| }
| }
| }
| </style>
|
|