<template>
|
<div class="app">
|
<!--面包屑导航区域-->
|
<el-breadcrumb separator-class="el-icon-arrow-right" class="el-breadcrumb">
|
<router-link to="/home" tag="el-button" type="text">{{ $t('langHome') }}</router-link>
|
<el-button type="text">设备管理</el-button>
|
<router-link to="/device/iostate" tag="el-button" type="text">IO状态</router-link>
|
<router-link to="/device/alarm" tag="el-button" type="text">报警信息</router-link>
|
<router-link to="/device/parameter" tag="el-button" type="text">参数下发</router-link>
|
<router-link to="/device/control" tag="el-button" type="text">开关控制</router-link>
|
</el-breadcrumb>
|
<div>参数下发</div>
|
</div>
|
|
</template>
|
|
<script>
|
|
|
export default {
|
name: "parameter",
|
|
}
|
|
</script>
|
|
<style lang="less" scoped>
|
.el-table {
|
margin-top: 15px;
|
font-size: 12px;
|
}
|
|
.el-pagination {
|
margin-top: 15px;
|
}
|
|
.app .el-card {
|
width: 99%;
|
}
|
</style>
|
|