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
69
70
71
72
73
74
75
76
77
78
79
80
81
<template>
  <div class="app">
    <!--面包屑导航区域-->
    <el-breadcrumb separator-class="el-icon-arrow-right" class="el-breadcrumb">
      <el-breadcrumb-item :to="{ path: '/home' }">{{ $t('langHome') }}</el-breadcrumb-item>
      <el-breadcrumb-item>设备管理</el-breadcrumb-item>
      <el-breadcrumb-item :to="{ path: '/Electrical/Parameter' }">参数</el-breadcrumb-item>
      <el-breadcrumb-item :to="{ path: '/Electrical/Action' }">开关控制</el-breadcrumb-item>
      <el-breadcrumb-item :to="{ path: '/Electrical/Sign' }">IO状态</el-breadcrumb-item>
      <el-breadcrumb-item :to="{ path: '/Electrical/State' }">报警信息</el-breadcrumb-item>
    </el-breadcrumb>
    <div>参数</div>
    <el-row :gutter="40" style="display: flex;flex-wrap: wrap;">
      <el-col :span="7">
        <div class="grid-content bg-purple">
          <el-input prop="sbname"></el-input>
          <el-input prop="sbdata"></el-input>
        </div>
      </el-col>
 
    </el-row>
  </div>
</template>
 
<script>
 
 
export default {
  name: "Parameter",
  // data () {
  //   return {
  //     sbList: {
  //       records: [],
  //     }
  //   }
  // }
}
 
</script>
 
<style lang="less" scoped>
.el-row {
  margin-bottom: 20px;
 
  &:last-child {
    margin-bottom: 0;
  }
}
 
.el-col {
  border-radius: 4px;
  margin: 10px;
}
 
.el-input {
  width: 70px;
  height: 30px;
}
 
.bg-purple-dark {
  background: #99a9bf;
}
 
.bg-purple {
  background: #d3dce6;
}
 
.bg-purple-light {
  background: #e5e9f2;
}
 
.grid-content {
  border-radius: 4px;
  min-height: 36px;
}
 
.row-bg {
  padding: 10px 0;
  background-color: #f9fafc;
}
</style>