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="data-acquisition-config">
| <div>
| <el-row class="title">
| <el-col :span="6" style="padding-left: 20px;text-align: left;">数采配置</el-col>
| </el-row>
| </div>
| <div>
| <el-table></el-table>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| name: "dataAcquisitionConfig",
| // import 引入的组件需要注入到对象中才能使用
| components: {},
| data() {
| // 这里存放数据
| return {}
| },
| // 方法集合
| methods: {},
| }
| </script>
|
| <style scoped>
| .data-acquisition-config {
| width: 100%;
| height: 100%;
| overflow-y: auto;
| //overflow-x: hidden;
| .title {
| height: 60px;
| line-height: 60px;
| }
| }
| </style>
|
|