<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>
|