Ptmpan.vue 1.36 KB
Newer Older
wangren committed
1 2
<template>
  <div class="eibs-tab">
闫泽浩 committed
3 4 5 6 7 8
    <c-col :span="8" style="height: 24px">
      <el-form-item
        label="Authentication of Address"
        class="messageLabel"
        label-width="200px"
      >
wangren committed
9 10
      </el-form-item>
    </c-col>
闫泽浩 committed
11 12 13 14 15 16 17
    <c-table
      :border="true"
      :list="data"
      ref="table"
      style="width:80%,text-aligen:center"
      height="500"
      :paginationShow="false"
wangren committed
18
    >
闫泽浩 committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
      <el-table-column
        label="Corr.Type"
        width="auto"
        prop="cortyp"
      ></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
43 44 45
  </div>
</template>
<script>
闫泽浩 committed
46
import Api from "~/service/Api";
wangren committed
47
import commonProcess from "~/mixin/commonProcess";
闫泽浩 committed
48 49
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infpty/Event";
wangren committed
50 51

export default {
闫泽浩 committed
52 53 54 55 56 57 58 59 60 61 62
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      data: [],
    };
  },
  methods: { ...Event },
  created: function () {},
};
wangren committed
63 64
</script>
<style>
闫泽浩 committed
65
</style>