Srvdsp.vue 1.48 KB
Newer Older
liushikai committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
      <c-col :span="22" :offset="1">
      <c-table :border="true" :list="data" style="width:80%,text-align:center">
        <el-table-column label="Execute" width="auto"></el-table-column>
        <el-table-column label="Handler" width="auto"></el-table-column>
        <el-table-column label="Service" width="auto"></el-table-column>
        <el-table-column label="Stop" width="auto"></el-table-column>
        <el-table-column label="Succ." width="auto"></el-table-column>
        <el-table-column label="Retry" width="auto"></el-table-column>
        <el-table-column label="Errors" width="auto"></el-table-column>
        <el-table-column label="Threshold" width="auto"></el-table-column>
        <el-table-column label="Consecutive Errors" width="auto"></el-table-column>
        <el-table-column label="Lck" width="auto"></el-table-column>
        <el-table-column label="Period for count (in hours)" width="auto"></el-table-column>
        <el-table-column label="Configure" width="auto"></el-table-column>
      </c-table>
    </c-col>
  </div>
liushikai committed
20 21
</template>
<script>
22
import Api from "~/service/Api";
liushikai committed
23
import CommonProcess from "~/mixin/CommonProcess";
24 25
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Mgrtsk/Event";
liushikai committed
26 27

export default {
28 29 30 31
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [CommonProcess],
  data() {
liushikai committed
32 33 34
    return {
        data:[],
    };
35 36 37 38
  },
  methods: { ...Event },
  created: function () {},
};
liushikai committed
39 40 41
</script>
<style>
</style>