1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
<template>
<div class="eibs-tab">
<c-row>
<c-col :span="24">
<c-col :span="12" style="padding-right: 20px">
<!--========================== 不为swift格式左边 =========================================-->
<c-col :span="24">
<c-col :span="24">
<c-ptap :model="model" :isAdrblk="false" :haveAdrLabel="true" :disabled="true" :disabledExtkey="true" :disabledRef="true" :argadr="{
title: '申请人', grp: 'nidgrp', rol: 'apl'}" ptytyp="C">
</c-ptap>
</c-col>
<!-- <c-col :span="24">
<c-ptap :model="model" :isAdrblk="false" :haveAdrLabel="true" :disabled="true" :disabledRef="true" :disabledExtkey="true" :argadr="{
title: '保兑行', grp: 'nidgrp', rol: 'con'}" ptytyp="B" bchinr='00000036'>
</c-ptap>
</c-col> -->
<!-- 新增反担保行,用哪个角色?暂写删除的保兑行角色 -->
<c-col :span="24" v-if="(model.nidgrp.rec.hndtyp == 'OT')">
<c-ptap :model="model" :isAdrblk="false" :haveAdrLabel="true" :disabled="true" :disabledExtkey="true" :disabledRef="true" :argadr="{
title: '反担保行', grp: 'nidgrp', rol: 'iss'}" ptytyp="B">
</c-ptap>
</c-col>
<!-- <c-col :span="24" v-if="(model.nidgrp.rec.hndtyp != 'OT')">
<c-ptap :model="model" :isAdrblk="false" :haveAdrLabel="true" :disabled="true" :disabledExtkey="true" :disabledRef="true" :argadr="{
title: '反担保行', grp: 'nidgrp', rol: 'ctr'}" ptytyp="B">
</c-ptap>
</c-col> -->
<!-- 增加判断nidgrp.rec.fenlishi有值时被保证人亮,为空时灰 -->
<c-col :span="24">
<c-ptap
:model="model"
:isAdrblk="false"
:haveAdrLabel="true"
:disabled="true" :disabledExtkey="true"
:disabledRef="true"
:argadr="{title: '被保证人', grp: 'nidgrp', rol: 'bdb' }"
ptytyp="C"
></c-ptap>
</c-col>
<c-col :span="24">
<el-form-item prop="nidgrp.rec.grtjuscod">
<span slot="label">
<div>被保证人</div>
<div>社会统一信用代码</div>
</span>
<c-input disabled v-model="model.nidgrp.rec.grtjuscod" maxlength="18" placeholder="请输入被保证人社会统一信用代码"></c-input>
</el-form-item>
</c-col>
</c-col>
</c-col>
<c-col :span="12" style="padding-left: 20px">
<!-- ==========================不为swift格式右边=================================== -->
<c-col :span="24">
<c-col :span="24">
<c-ptap
:model="model"
:isAdrblk="false" :haveAdrLabel="true" :disabled="true" :disabledExtkey="true" :disabledRef="true"
:argadr="{title: '受益人', grp: 'nidgrp', rol: 'ben'}"
ptytyp="C"
></c-ptap>
</c-col>
<c-col :span="24" v-if="model.nidgrp.rec.hndtyp == 'OC'">
<c-ptap :model="model" :isAdrblk="false" :haveAdrLabel="true" :disabled="true" :disabledExtkey="true" :disabledRef="true" :argadr="{
title: '转开行', grp: 'nidgrp', rol: 'iss'}" ptytyp="B">
</c-ptap>
</c-col>
<c-col :span="24" v-if="model.nidgrp.rec.hndtyp != 'OC' && model.nidgrp.rec.hndtyp != 'OT'">
<c-ptap :model="model" :isAdrblk="false" :haveAdrLabel="true" :disabled="true"
:disabledExtkey="true" :disabledRef="true"
:argadr="{title: '通知行', grp: 'nidgrp', rol: 'adv'}"
ptytyp="B">
</c-ptap>
</c-col>
</c-col>
</c-col>
</c-col>
</c-row>
</div>
</template>
<script>
import event from "../event";
import Default from "../model/default";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event, Default],
data() {
return {
};
},
methods: {},
created: function() {}
};
</script>
<style></style>