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
| <template>
| <div class="equipmentList">
| <div class="header">设备管理</div>
|
| <!-- 主要内容 -->
| <Content></Content>
| </div>
| </template>
|
| <script>
| import Content from "@/views/equipmentManage/equipmentList/components/Content";
|
| export default {
| components: {
| Content,
| },
| };
| </script>
|
| <style lang="scss" scoped>
| .equipmentList {
| background-color: rgb(243, 245, 248);
| .header {
| padding: 0 24px;
| height: 50px;
| font-size: 16px;
| color: #666666;
| line-height: 50px;
| background: #ffffff;
| font-weight: 700;
| }
|
| .content {
| margin: 24px;
| padding: 20px;
| background-color: #fff;
| }
| }
| </style>
|
|