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
<template>
<div class="eibs-tab">
<c-col :span="24">
<c-col :span="24">
<!-- <div>Documents presented by 1st Beneficiary</div> -->
<label class="el-form-item__label" style="19%">Documents presented by 1st Beneficiary</label>
</c-col>
<c-col :span="12" style="padding-right: 20px">
<c-table-doc :model="model" docgrdNumber="be1" xxtp='bttp' :isLeft="true"></c-table-doc>
</c-col>
<c-col :span="12" style="padding-left: 20px">
<c-table-doc :model="model" docgrdNumber="be1" xxtp='bttp'></c-table-doc>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="24">
<!-- <div>Documents presented by 2nd Beneficiary</div> -->
<label class="el-form-item__label" style="19%">Documents presented by 2nd Beneficiary</label>
</c-col>
<c-col :span="12" style="padding-right: 20px">
<c-table-doc :model="model" docgrdNumber="be2" xxtp='bttp' :isLeft="true"></c-table-doc>
</c-col>
<c-col :span="12" style="padding-left: 20px">
<c-table-doc :model="model" docgrdNumber="be2" xxtp='bttp'></c-table-doc>
</c-col>
</c-col>
</div>
</template>
<script>
import event from "../event";
export default {
components: {
},
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
watch: {
},
data() {
return {
docgrd: {
}
};
},
methods: {},
computed: {
},
created: function() {}
};
</script>
<style>
.marginLable {
padding-left: 150px;
}
.bctdav_bctp_bctovw_cheak {
margin: 0px 0 10px 150px;
}
</style>