<template>
  <div class="eibs">
    <!-- ================= 左 ================== -->
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24" class="fieldName">
            <c-ptap
              :argadr="{ title: '1st Beneficiary', grp: 'ltdgrp', rol: 'be1' }"
              :haveAdrLabel="true"
              :disabled="true"
              :disabledExtkey="true"
              :disabledDetailTrn="true"
              :isAdrblk="true"
              :model="model"
              ptytyp="B" :isLabel120="false"></c-ptap>
      </c-col>
      <c-col :span="24" class="fieldName">
            <c-ptap
              :argadr="{ title: '2nd Beneficiary', grp: 'ltdgrp', rol: 'be2' }"
              :haveAdrLabel="true"
              :disabled="true"
              :disabledExtkey="true"
              :disabledDetailTrn="true"
              :isAdrblk="true"
              :model="model"
              ptytyp="B" :isLabel120="false"></c-ptap>
      </c-col>
    </c-col>

    <!-- ================右  ==================== -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24" class="fieldName">
            <c-ptap
              :argadr="{ title: 'Advising Bank', grp: 'ltdgrp', rol: 'adt' }"
              :haveAdrLabel="true"
              :disabled="true"
              :disabledExtkey="true"
              :disabledDetailTrn="true"
              :isAdrblk="true"
              :model="model"
              ptytyp="B" :isLabel120="false"></c-ptap>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess, Event],
  data() {
    return {
      ptsaddg: {
        columns: [
          {
            title: "角色",
            width: "120px",
            dataIndex: "rol",
            show: "select",
          },
          {
            title: "当事人",
            width: "180px",
            dataIndex: "ptyextkey",
            show: "input",
          },
          {
            title: "名称",
            width: "250px",
            dataIndex: "nam",
          },
          {
            title: "参考号",
            width: "250px",
            dataIndex: "ref",
          },
        ],
        urls: "litp.ptsaddp.ptsaddg",
      },
    };
  },
  methods: {
    handleEdit() {
      console.log("1111测试");
    },

    addRow() {},
    removeRow() {},
  },
  created: function () {},
};
</script>
<style></style>