Blame view

src/views/device/log.vue 640 Bytes
db11048f   阿宝   设备状态,学校管理
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
  <template>
    <div>
      <back-box>
        <template slot="title">
          <span>设备日志</span>
        </template>
        <template slot="btns">
          <el-tooltip effect="dark" content="基站配置信息导出" placement="bottom">
            <el-button
              type="primary"
              icon="el-icon-download"
              size="mini"
              plain
              circle
              @click="down = true"
            ></el-button>
          </el-tooltip>
        </template>
      </back-box>
    </div>
  </template>
  
  <script>
  export default {
    data() {
      return {
        down: false,
      };
    },
    methods: {},
  };
  </script>
  
  <style>
  </style>