Ptmpan.vue 1.19 KB
Newer Older
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
<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";
wangren committed
26
import commonProcess from "~/mixin/commonProcess";
27 28 29 30 31 32
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infpta/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
33
  mixins: [commonProcess],
34 35 36 37 38 39 40 41 42 43 44
  data() {
    return {
      data: [],
    };
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>