Ptmpan.vue 1.46 KB
Newer Older
wangren 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 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    
    <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>                                                
      
wangren committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51
  </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 {
52
          data:[]
wangren committed
53 54 55 56 57 58 59 60 61 62 63
        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>
64 65 66 67 68 69

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