Ptmpan.vue 1.19 KB
<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>