<template>
  <div class="eibs">
    <!-- ================= 左 ================== -->
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24" class="fieldName">
        <el-form-item label="Applicant" style="margin-bottom: 0">
          <el-form-item label-width="0" style="margin-bottom: 10px">
            <c-ptap
              :argadr="{ title: '申请人', grp: 'lidgrp', rol: 'apl' }"
              :haveAdrLabel="true"
              :isAdrblk="true"
              :isFieldLabelVisible="false"
              :disabled="true"
              :disabledExtkey="true"
              :disabledDetailTrn="true"
              :model="model"
              bchinr="00000036"
              ptytyp="B" :isLabel120="false"></c-ptap>
          </el-form-item>
        </el-form-item>
      </c-col>
      <c-col :span="24" class="fieldName">
        <el-form-item label="Beneficiary" style="margin-bottom: 0">
          <el-form-item label-width="0" style="margin-bottom: 10px">
            <c-ptap
              :argadr="{ title: '受益人', grp: 'lidgrp', rol: 'ben' }"
              :haveAdrLabel="true"
              :isAdrblk="true"
              :isFieldLabelVisible="false"
              :disabled="true"
              :disabledExtkey="true"
              :disabledDetailTrn="true"
              :model="model"
              bchinr="00000036"
              ptytyp="B" :isLabel120="false"></c-ptap>
          </el-form-item>
        </el-form-item>
      </c-col>
    </c-col>

    <!-- ================右  ==================== -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24" class="fieldName">
        <el-form-item label="Advising Bank" style="margin-bottom: 0">
          <el-form-item label-width="0" style="margin-bottom: 10px">
            <c-ptap
              :argadr="{ title: '通知行', grp: 'lidgrp', rol: 'adv' }"
              :haveAdrLabel="true"
              :isAdrblk="true"
              :isFieldLabelVisible="false"
              :disabled="true"
              :disabledExtkey="true"
              :disabledDetailTrn="true"
              :model="model"
              bchinr="00000036"
              ptytyp="B" :isLabel120="false"></c-ptap>
          </el-form-item>
        </el-form-item>
      </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 () {
    this.ptypValue = "prb";
  },
  watch: {
    "model.brdgrp.rec.docprbrol": {
      handler(val, oldval) {
        this.ptypValue = val.toLowerCase();
      },
    },
  },
};
</script>
<style></style>