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
| <template>
| <div class="Flow heart">
| <div class="title">算力管理的使用流程</div>
|
| <div class="flowList">
| <div class="flowItem" v-for="(item, index) in flowList" :key="index">
| <img :src="item.img" alt="" />
| <div class="flowTitle">{{ item.title }}</div>
| </div>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| data() {
| return {
| flowList: [
| {
| img: "/images/search/1.png",
| title: "开通统计查询",
| },
| { img: "/images/search/3.png", title: "数据查看" },
| {
| img: "/images/search/2.png",
| title: "录像查看",
| },
| {
| img: "/images/search/4.png",
| title: "数据实时监控",
| },
| ],
| };
| },
| };
| </script>
|
| <style scoped lang="scss">
| .Flow {
| overflow: hidden;
| height: 540px;
| text-align: center;
|
| .title {
| margin: 60px 0;
| font-size: 28px;
| color: #3d3d3d;
| }
|
| .flowList {
| display: flex;
|
| .flowItem {
| width: 260px;
| margin-right: 80px;
|
| &:last-child {
| margin-right: 0;
| }
|
| .flowTitle {
| margin-top: 20px;
| font-size: 16px;
| }
| }
| }
| }
| </style>
|
|