clll
2023-09-13 716ad435a943659416f7678897eceaa637150056
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="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>IO状态</div>
    </div>
  </template>
  
  <script>
 
  
  export default {
    name: "iostate",
   
    }
    
  </script>
  
  <style lang="less" scoped>
  .el-table {
    margin-top: 15px;
    font-size: 12px;
  }
  
  .el-pagination {
    margin-top: 15px;
  }
  
  .app .el-card {
    width: 99%;
  }
  </style>