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
| <template>
| <div class="menuWarp">
| <van-nav-bar title="功能菜单" fixed safe-area-inset-top placeholder></van-nav-bar>
| <van-grid clickable :column-num="3">
| <van-grid-item icon="browsing-history" text="实时监控" to="/realMonitoring" />
| <van-grid-item icon="column" text="历史监控" to="/historyMonitoring" />
| <van-grid-item icon="todo-list" text="告警列表" to="/alarmList" />
| </van-grid>
| </div>
| </template>
|
| <script>
| export default {
| data() {
| return {
|
| }
| },
| }
| </script>
|
| <style scoped>
| .menuWarp {
| width: 100%;
| height: 100%;
| background: #f5f5f5;
| }
| .van-grid-item {
| color: #4b88f9;
| }
| </style>
|
|