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
| <template>
| <div class="dashboard-editor-container login-index-bod">
| <div class="login-index">
| <p>——欢迎登录AI智能视频监控系统</p>
| </div>
| </div>
| </template>
|
| <script>
|
|
| export default {
| name: 'Index',
| components: {
| },
| data() {
| return {
|
| }
| },
| methods: {
|
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .dashboard-editor-container {
| padding: 32px;
| background-color: rgb(240, 242, 245);
| position: relative;
|
| .chart-wrapper {
| background: #fff;
| padding: 16px 16px 0;
| margin-bottom: 32px;
| }
|
| .login-index{
| width:790px;
| height:321px;
| background:url(../assets/images/hyy.jpg) no-repeat center center;
| color:#019283;
| font-size:28px;
| margin:0 auto;
| padding-top:100px;
| padding-left:170px;
| }
| }
| .login-index-bod{
| width:100%;
| position:relative;
| height:100%;
| background-color:#fff;
| display:flex;
| flex-direction:row;
| justify-content: center;
| justify-items: center;
| padding-top:13%;
| }
|
| @media (max-width:1024px) {
| .chart-wrapper {
| padding: 8px;
| }
| }
| </style>
|
|