whycq
2022-03-16 2a66c437952971e9065dff5c48d76c6ae50b6c5d
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>穿梭车监控管理</title>
    <link rel="stylesheet" href="../static/vue/element/element.css">
    <script src="../static/vue/js/vue.min.js"></script>
    <script src="../static/vue/element/element.js"></script>
    <style>
        body {
            background-color: #6CA7A8;
        }
        .el-row {
            margin-bottom: 20px;
        &:last-child {
             margin-bottom: 0;
         }
        }
        .el-col {
            border-radius: 4px;
        }
        .bg-purple-dark {
            background: #99a9bf;
        }
        .bg-purple {
            background: #067af8;
        }
        .bg-purple-light {
            background: #e5e9f2;
        }
        .grid-content {
            border-radius: 4px;
            min-height: 360px;
        }
        .row-bg {
            padding: 10px 0;
            background-color: #f9fafc;
        }
    </style>
 
</head>
<body>
    <div id="container">
 
        <el-row>
<!--            <el-col :span="1"><div class="grid-content bg-purple"></div></el-col>-->
            <el-col :span="22" style="float: right"><div class="grid-content bg-purple-light"></div></el-col>
 
        </el-row>
 
    </div>
</body>
</html>
    <script>
        var app = new Vue({
            el: '#container',
            data: {
                message: 'btn'
            }
        })
    </script>