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
36
37
38
39
40
41
42
43
44
<template>
<div class="eibs-tab">
<!-- <el-col :span="12">
<c-button size="small" type="primary" @click="onRecpanLnkinfptm">
&Info
</c-button>
</el-col> -->
<c-col :span="24">
<el-form-item label="Authentication of Address" label-width="180px">
<c-table
:border="true"
:list="data"
style="width:80%,text-align:center"
>
<el-table-column label="Corr.Type" width="auto"></el-table-column>
<el-table-column label="Addressing" width="auto"></el-table-column>
<el-table-column label="Authentication" width="auto"></el-table-column>
<el-table-column label="Public Key" width="auto"></el-table-column>
</c-table>
</el-form-item>
</c-col>
</div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infpta/Event";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {
data: [],
};
},
methods: { ...Event },
created: function () {},
};
</script>
<style>
</style>