<template>
  <div class="eibs">
    <c-col :span="24">
      <c-col :span="12" style="padding-right: 20px">
        <c-table-doc :model="model" xxtp="brtp" :isLeft="true" :disabledCmail2="true"></c-table-doc>
      </c-col>

      <c-col :span="12" style="padding-left: 20px">
        <c-table-doc :model="model" xxtp="brtp" :disabledCmail2="true"></c-table-doc>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
// import Docpre from "~/views/Public/Docpre";
import event from "../event";
export default {
  components: {
    // "c-docpre": Docpre,
  },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
  created: function () {},
};
</script>
<style></style>