Ptypc.vue 4.05 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
3 4
    <c-row>
      <c-col :span="24">
liyixun committed
5 6 7 8 9 10 11 12 13 14 15 16 17
        <c-col :span="12">
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
                title: 'Applicant',
                grp: 'gidgrp',
                rol: 'apc',
              }"
              :disabled="false"
            >
            </c-ptap>
          </c-col>
liyixun committed
18

liyixun committed
19 20 21 22 23 24 25 26 27 28 29 30 31
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
                title: 'Obligor',
                grp: 'gidgrp',
                rol: 'ctc',
              }"
              :disabled="false"
              @onAplpDet="onCtcpDet"
            >
            </c-ptap>
          </c-col>
liyixun committed
32

liyixun committed
33 34 35 36 37 38 39 40 41 42 43 44 45
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
                title: 'Int. Beneficiary',
                grp: 'gidgrp',
                rol: 'bec',
              }"
              :disabled="false"
              @onAplpDet="onBecpDet"
            >
            </c-ptap>
          </c-col>
liyixun committed
46
        </c-col>
liyixun committed
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
        <c-col :span="11" :offset="1">
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
                title: 'Issuing Bank',
                grp: 'gidgrp',
                rol: 'iss',
              }"
              :disabled="true"
              @onAplpDet="onCtcpDet"
            >
            </c-ptap>
          </c-col>

          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
                title: 'Ultimate Ben Bank',
                grp: 'gidgrp',
                rol: 'ben',
              }"
              :disabled="true"
              @onAplpDet="onCtcpDet"
            >
            </c-ptap>
          </c-col>

          <c-col :span="24">
            <el-form-item
              label="Avail. with Bank Ref."
              prop="gidgrp.avc.pts.ref"
            >
              <c-input
                disabled
                v-model="model.gidgrp.avc.pts.ref"
                maxlength="16"
                placeholder="请输入Avail. with Bank Ref."
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              label="External Key of Address"
              prop="gidgrp.avc.pts.extkey"
            >
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gidgrp.avc.pts.extkey"
                  maxlength="16"
                  placeholder="请输入External Key of Address"
                ></c-input>
                <template slot="footer">
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                    icon="el-icon-search"
                    @click="onSeainf(`gidgrp.avc.pts.extkey`)"
                  >
                  </c-button>
                  <c-button size="small" type="primary" @click="onAvcpDet">
                    Details
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item label="Name of Party" prop="gidgrp.avc.pts.nam">
              <c-input
                disabled
                v-model="model.gidgrp.avc.pts.nam"
                maxlength="40"
                placeholder="请输入Name of Party"
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
127
        </c-col>
liyixun committed
128 129
      </c-col>
    </c-row>
liyixun committed
130 131 132
  </div>
</template>
<script>
liyixun committed
133
import Api from "~/service/Api";
liyixun committed
134
import commonProcess from "~/mixin/commonProcess";
liyixun committed
135 136
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitame/Event";
liyixun committed
137
import Ptap from "~/views/Public/Ptap";
liyixun committed
138 139

export default {
liyixun committed
140 141 142 143 144 145 146 147 148 149
  components: { "c-ptap": Ptap },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
150 151 152
</script>
<style>
</style>