Ptypc.vue 4.08 KB
Newer Older
liyixun committed
1
<template>
huangxin committed
2
  <div class="eibs">
3 4
<!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
liyixun committed
5 6 7 8
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
wangna committed
9
                title: '申请人',
liyixun committed
10 11 12 13 14 15 16
                grp: 'gidgrp',
                rol: 'apc',
              }"
              :disabled="false"
            >
            </c-ptap>
          </c-col>
liyixun committed
17

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

liyixun committed
32 33 34 35
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
wangna committed
36
                title: '国际受益人',
liyixun committed
37 38 39 40 41 42 43 44 45
                grp: 'gidgrp',
                rol: 'bec',
              }"
              :disabled="false"
              @onAplpDet="onBecpDet"
            >
            </c-ptap>
          </c-col>
        </c-col>
46 47 48

      <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
49 50 51 52
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
wangna committed
53
                title: '开证行',
liyixun committed
54 55 56 57 58 59 60 61
                grp: 'gidgrp',
                rol: 'iss',
              }"
              :disabled="true"
              @onAplpDet="onCtcpDet"
            >
            </c-ptap>
          </c-col>
liyixun committed
62

liyixun committed
63 64 65 66
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
wangna committed
67
                title: '最终受益银行',
liyixun committed
68 69 70 71 72 73 74 75
                grp: 'gidgrp',
                rol: 'ben',
              }"
              :disabled="true"
              @onAplpDet="onCtcpDet"
            >
            </c-ptap>
          </c-col>
liyixun committed
76

liyixun committed
77 78
          <c-col :span="24">
            <el-form-item
wangna committed
79
              label="可用银行参考号"
liyixun committed
80 81 82 83 84 85
              prop="gidgrp.avc.pts.ref"
            >
              <c-input
                disabled
                v-model="model.gidgrp.avc.pts.ref"
                maxlength="16"
wangna committed
86
                placeholder="请输入可用银行参考号"
liyixun committed
87 88 89 90 91
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
92
              label="地址"
liyixun committed
93 94 95 96 97 98 99
              prop="gidgrp.avc.pts.extkey"
            >
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gidgrp.avc.pts.extkey"
                  maxlength="16"
wangna committed
100
                  placeholder="请输入"
liyixun committed
101 102 103 104 105 106 107 108 109 110 111
                ></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">
wangna committed
112
                    详情
liyixun committed
113 114 115 116 117 118
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
119
            <el-form-item label="当事人名称" prop="gidgrp.avc.pts.nam">
liyixun committed
120 121 122 123
              <c-input
                disabled
                v-model="model.gidgrp.avc.pts.nam"
                maxlength="40"
wangna committed
124
                placeholder="请输入当事人名称"
liyixun committed
125 126 127
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
128 129 130 131
        </c-col>
  </div>
</template>
<script>
liyixun committed
132
import Api from "~/service/Api";
liyixun committed
133
import commonProcess from "~/mixin/commonProcess";
liyixun committed
134 135
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getame/Event";
liyixun committed
136 137 138
import Ptap from "~/views/Public/Ptap";

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