Ptypc.vue 4.01 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
        <c-col :span="12">
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
wangna committed
10
                title: '申请人',
liyixun committed
11 12 13 14 15 16 17
                grp: 'gidgrp',
                rol: 'apc',
              }"
              :disabled="false"
            >
            </c-ptap>
          </c-col>
liyixun committed
18

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

liyixun committed
33 34 35 36
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
wangna committed
37
                title: '国际受益人',
liyixun committed
38 39 40 41 42 43 44 45
                grp: 'gidgrp',
                rol: 'bec',
              }"
              :disabled="false"
              @onAplpDet="onBecpDet"
            >
            </c-ptap>
          </c-col>
liyixun committed
46
        </c-col>
liyixun committed
47 48 49 50 51
        <c-col :span="11" :offset="1">
          <c-col :span="24">
            <c-ptap
              :model="model"
              :argadr="{
wangna committed
52
                title: '开证行',
liyixun committed
53 54 55 56 57 58 59 60 61 62 63 64 65
                grp: 'gidgrp',
                rol: 'iss',
              }"
              :disabled="true"
              @onAplpDet="onCtcpDet"
            >
            </c-ptap>
          </c-col>

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

          <c-col :span="24">
            <el-form-item
wangna committed
78
              label="可用银行参考号"
liyixun committed
79 80 81 82 83 84
              prop="gidgrp.avc.pts.ref"
            >
              <c-input
                disabled
                v-model="model.gidgrp.avc.pts.ref"
                maxlength="16"
wangna committed
85
                placeholder="请输入可用银行参考号"
liyixun committed
86 87 88 89 90
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
91
              label="地址"
liyixun committed
92 93 94 95 96 97 98
              prop="gidgrp.avc.pts.extkey"
            >
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gidgrp.avc.pts.extkey"
                  maxlength="16"
wangna committed
99
                  placeholder="请输入"
liyixun committed
100 101 102 103 104 105 106 107 108 109 110
                ></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
111
                    详情
liyixun committed
112 113 114 115 116 117
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
118
            <el-form-item label="当事人名称" prop="gidgrp.avc.pts.nam">
liyixun committed
119 120 121 122
              <c-input
                disabled
                v-model="model.gidgrp.avc.pts.nam"
                maxlength="40"
wangna committed
123
                placeholder="请输入当事人名称"
liyixun committed
124 125 126
              ></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>