Ptyp.vue 5.03 KB
<template>
  <div class="eibs">
    <!-- ================= 左 ================== -->
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
        <el-form-item label="Applicant's Ref" prop="lidgrp.apl.pts.ref">
          <c-input
            v-model="model.lidgrp.apl.pts.ref"
            maxlength="16"
            style="width: 100%"
            placeholder="请输入申请人参考号">
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24" class="fieldName">
				<c-ptap
					disabled
					:disabledExtkey="true"
					:argadr="{
					title: this.model.lidgrp.rec.dkflg == 'X' ? 'Applicant Bank' : 'Applicant',
					grp: 'lidgrp',
					rol: 'apl',
					}"
					:haveAdrLabel="true"
					:isAdrblk="true"
					:model="model"
					:ptytyp="this.model.lidgrp.rec.dkflg == 'X' ? 'B,C' : 'C'"
					 :isLabel120="false"></c-ptap>
      </c-col>

      <c-col :span="24">
        <el-form-item label="Beneficiary's Ref" prop="lidgrp.ben.pts.ref">
          <c-input
            v-model="model.lidgrp.ben.pts.ref"
            maxlength="16"
            style="width: 100%"
            placeholder="请输入受益人参考号">
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24" class="fieldName">
				<c-ptap
					disabled
					:disabledExtkey="true"
					:argadr="{ title: 'Beneficiary', grp: 'lidgrp', rol: 'ben' }"
					:haveAdrLabel="true"
					:isAdrblk="true"
					:model="model"
					bchinr="00000036"
					ptytyp="B" :isLabel120="false"></c-ptap>
      </c-col>
      <c-col :span="24" class="fieldName">
				<c-ptap
					disabled
					:disabledExtkey="true"
					:argadr="{ title: 'Reimbursement Bank', grp: 'lidgrp', rol: 'rmb' }"
					:haveAdrLabel="true"
					:isAdrblk="true"
					:model="model"
					bchinr="00000036"
					ptytyp="B" :isLabel120="false"></c-ptap>
      </c-col>
      <c-col :span="24" class="fieldName" v-if="model.lidgrp.rec.dkflg == 'X'">
				<c-ptap
					disabled
					:disabledExtkey="true"
					:argadr="{ title: 'Applicant', grp: 'lidgrp', rol: 'apo' }"
					:haveAdrLabel="true"
					:isAdrblk="true"
					:model="model"
					ptytyp="C" :isLabel120="false"></c-ptap>
      </c-col>
    </c-col>

    <!-- ================右  ==================== -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
        <el-form-item label="Advising Bank's Ref" prop="lidgrp.adv.pts.ref">
          <c-input
            v-model="model.lidgrp.adv.pts.ref"
            maxlength="16"
            style="width: 100%"
            placeholder="请输入通知行参考号">
          </c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24" class="fieldName">
				<c-ptap
					disabled
					:disabledExtkey="true"
					:argadr="{ title: 'Advising Bank', grp: 'lidgrp', rol: 'adv' }"
					:haveAdrLabel="true"
					:isAdrblk="true"
					:model="model"
					bchinr="00000036"
					ptytyp="B" :isLabel120="false"></c-ptap>
      </c-col>
      <c-col :span="24" class="fieldName">
				<c-ptap
					disabled
					:disabledExtkey="true"
					:argadr="{ title: '2nd Advising Bank', grp: 'lidgrp', rol: 'a2b' }"
					:haveAdrLabel="true"
					:isAdrblk="true"
					:model="model"
					bchinr="00000036"
					ptytyp="B" :isLabel120="false"></c-ptap>
      </c-col>
      <c-col :span="24" class="fieldName">
				<c-ptap
					disabled
					:disabledExtkey="true"
					:disabledDetailTrn="true"
					:argadr="{ title: 'Available with Bank', grp: 'lidgrp', rol: 'avb' }"
					:haveAdrLabel="true"
					:isAdrblk="true"
					:model="model"
					bchinr="00000036"
					ptytyp="B" :isLabel120="false"></c-ptap>
      </c-col>
      <c-col :span="24" class="fieldName" v-if="model.lidgrp.rec.cnfdet == 'A'">
				<c-ptap
					disabled
					:disabledExtkey="true"
					:argadr="{ title: 'Requested Confirmation party', grp: 'lidgrp', rol: 'con' }"
					:haveAdrLabel="true"
					:isAdrblk="true"
					:model="model"
					bchinr="00000036"
					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>