<template>
  <div class="eibs-tab">
      <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>
</template>
<script>
import Api from "~/service/Api";
import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Mgrtsk/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [CommonProcess],
  data() {
    return {
        data:[],
    };
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>