<template>
  <div class="eibs-tab">
    
    <c-col :span="8" style="height: 24px" >
      <el-form-item label="Authentication of Address" class="messageLabel" label-width="200px">
      </el-form-item>
    </c-col>
    <c-table :border="true" :list="data" ref="table" 
    style="width:80%,text-aligen:center" height="500"
    :paginationShow="false"
    >
    <el-table-column
    label="Corr.Type"
    width="auto"
    prop="cortyp"
    sortable
    ></el-table-column>
    <el-table-column
    label="Address of Message "
    width="auto"
    prop="coradr"
    sortable
    ></el-table-column>
    <el-table-column
    label="Authenticator "
    width="auto"
    prop="autflg"
    sortable
    ></el-table-column>
    <el-table-column
    label="Public key"
    width="auto"
    prop="autdet"
    sortable
    ></el-table-column>
    </c-table>                                                
      
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Dbipty/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {
          data:[]
        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>

 <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onRecpanLnkinfptm">
            Info
        </c-button>
 </c-col> -->