Betfrep1.vue 7.09 KB
Newer Older
fukai committed
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
<template>
	<div class="eibs-tab">
		<!-- ======================= 第1行 Export L/C Ref. and Open Amt.L/C ========================= -->
		<c-col :span="24">
			<c-col :span="12" style="padding-right: 20px;">
				<!-- Export L/C Ref. 出口信用证参考号-->
				<el-form-item label="Export L/C Ref." prop="ledgrp.rec.ownref">
					<c-fullbox>
						<c-input v-model="model.ledgrp.rec.ownref" maxlength="16" placeholder="请输入出口信用证参考号" style="width: 95%" :disabled="true">
						</c-input>
					</c-fullbox>
				</el-form-item>
			</c-col>
			<c-col :span="12" style="padding-left: 20px">
				<c-col :span="12">
					<el-form-item label="Open Amt. L/C" prop="ledgrp.cbs.opn1.cur">
						<c-select-cur v-model="model.ledgrp.cbs.opn1.cur" maxlength="3" placeholder="请选择币种" dbCode="curtxt" sort="SRT" disabled></c-select-cur>
					</el-form-item>
				</c-col>

				<c-col :span="12">
					<el-form-item label="" label-width="5px" prop="ledgrp.cbs.opn1.amt">
						<c-input v-model="model.ledgrp.cbs.opn1.amt" placeholder="请输入信用证余额" class="m-input-currency" disabled>
						</c-input>
					</el-form-item>
				</c-col>
			</c-col>
		</c-col>

		<!-- ======================= 第2行 Bill Set Reference, Name========================= -->
		<c-col :span="24">
			<c-col :span="12" style="padding-right: 20px;">
				<!-- Bill Set Reference 单据参考号-->
				<el-form-item label="Document Reference" prop="bedgrp.rec.ownref">
					<c-fullbox>
						<c-input v-model="model.bedgrp.rec.ownref" maxlength="16" placeholder="请输入单据参考号" style="width: 95%" disabled></c-input>
					</c-fullbox>
				</el-form-item>
			</c-col>
			<!-- Name 简略信息-->
			<c-col :span="12" style="padding-left: 20px">
				<el-form-item label="Name" prop="bedgrp.rec.nam">
					<c-input text-align="middle" v-model="model.bedgrp.rec.nam" maxlength="40" placeholder="请输入简略信息" disabled>
					</c-input>
				</el-form-item>
			</c-col>
		</c-col>

		<!-- ======================= 第3部分 Document Info Overview ========================= -->
		<c-col :span="24">
			<!-- ======================= 左边 ========================= -->
			<c-col :span="12" style="padding-right: 20px">

				<!-- Document Amount 单据名义金额-->
				<c-col :span="24">
					<c-col :span="12">
						<!-- Document Amount 单据名义金额-->
						<el-form-item label="Document Amount" prop="bedgrp.cbs.max.cur">
							<c-select-cur v-model="model.bedgrp.cbs.max.cur" style="width: 100%" placeholder="请选择币种" @keyup.enter.native="maxCurEvent" dbCode="curtxt" sort="SRT" disabled>
							</c-select-cur>
						</el-form-item>
					</c-col>
					<c-col :span="8">
						<el-form-item label="" label-width="5px" prop="bedgrp.cbs.max.amt">
							<c-input-currency v-model="model.bedgrp.cbs.max.amt" style="text-align: left; width: 100%" class="m-input-currency" placeholder="请输入单据名义金额" disabled></c-input-currency>
						</el-form-item>
					</c-col>
				</c-col>

				<!-- Open Amount 单据余额-->
				<c-col :span="24">
					<c-col :span="12">
						<!-- Open Amount 单据余额-->
						<el-form-item label="Open Amount" prop="bedgrp.cbs.opn1.cur">
							<c-select-cur v-model="model.bedgrp.cbs.opn1.cur" maxlength="3" placeholder="" style="width: 100%" disabled dbCode="curtxt" sort="SRT"></c-select-cur>
						</el-form-item>
					</c-col>
					<c-col :span="8">
						<el-form-item label="" label-width="5px" prop="bedgrp.cbs.opn1.amt">
							<c-input-currency v-model="model.bedgrp.cbs.opn1.amt" style="text-align: left; width: 100%" class="m-input-currency" placeholder="" disabled></c-input-currency>
						</el-form-item>
					</c-col>
					<c-col :span="4">
						<el-form-item label="" label-width="5px" prop="bedgrp.cbs.opn2.amt">
							<c-input-currency v-model="model.bedgrp.cbs.opn2.amt" style="text-align: left; width: 100%" class="m-input-currency" placeholder="" disabled></c-input-currency>
						</el-form-item>
					</c-col>
				</c-col>

				<!-- Document Type 单据类型 -->
				<c-col :span="24">
					<el-form-item label="Document Type" prop="bedgrp.rec.doctypcod">
						<c-select v-model="model.bedgrp.rec.doctypcod" style="width: 100%" placeholder="请选择单据类型" dbCode="BEDTYP" disabled>
						</c-select>
					</el-form-item>
				</c-col>

				<c-col :span="24">
					<!-- Maturity Date 单据到期日 -->
					<c-col :span="12">
						<el-form-item label="Maturity Date" prop="bedgrp.rec.matdat">
							<c-date-picker type="date" v-model="model.bedgrp.rec.matdat" style="width: 100%" placeholder="请选择单据到期日" value-format="yyyy-MM-dd" disabled></c-date-picker>
						</el-form-item>
					</c-col>
					<c-col :span="12">
						<el-form-item label="Order Date" prop="bedgrp.rec.orddat">
							<c-date-picker type="date" v-model="model.bedgrp.rec.orddat" style="width:100%" disabled placeholder="请选择"></c-date-picker>
						</el-form-item>
					</c-col>
				</c-col>
				<c-col :span="24">
					<!-- Received on 收单日期 -->
					<c-col :span="12">
						<el-form-item label="Received on" prop="bedgrp.rec.rcvdat">
							<c-date-picker type="date" v-model="model.bedgrp.rec.rcvdat" style="width: 100%" placeholder="请选择收单日期" value-format="yyyy-MM-dd" disabled></c-date-picker>
						</el-form-item>
					</c-col>
					<!-- Presented on 交单日期 到单日期 -->
					<c-col :span="12">
						<el-form-item label="Presented on" prop="bedgrp.rec.predat">
							<c-date-picker type="date" v-model="model.bedgrp.rec.predat" style="width: 100%" placeholder="请选择交单日期" value-format="yyyy-MM-dd" disabled></c-date-picker>
						</el-form-item>
					</c-col>
				</c-col>
				<!-- Document Status单据状态 -->
				<c-col :span="24">
					<el-form-item label="Document Set Status" prop="bedgrp.rec.docsta">
						<c-select v-model="model.bedgrp.rec.docsta" maxlength="40" style="width: 100%" placeholder="请输入单据状态" dbCode="DOCST1" disabled></c-select>
					</el-form-item>
				</c-col>
			</c-col>
			<!-- ======================右边====================== -->
			<c-col :span="12" style="padding-left: 20px">
				<!--       Beneficiary  受益人  -->
				<c-col :span="24">

					<c-ptap10 :model="model" :disabled-ref="true" :disabled-nam="true" :argadr="{grp: 'bedgrp',rol: 'ben',}" :label="{labelRef: 'Beneficiary Ref.',labelNam: '',}">
					</c-ptap10>

				</c-col>

				<!-- 开证行 Issuing Bank Ref. -->
				<c-col :span="24">

					<c-ptap10 :model="model" :disabled-ref="true" :disabled-nam="true" :argadr="{grp: 'bedgrp',rol: 'iss',}" :label="{labelRef: 'Issuing Bank Ref.',labelNam: '',}">
					</c-ptap10>

				</c-col>

				<!-- Applicant         Ref. -->
				<c-col :span="24">
					<c-ptap10 :model="model" :disabled-ref="true" :disabled-nam="true" :argadr="{grp: 'bedgrp',rol: 'apl',}" :label="{labelRef: 'Applicant Ref.',labelNam: '',}">
					</c-ptap10>
				</c-col>

			</c-col>
		</c-col>
	</div>
</template>
<script>
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
  created: function() {},
  computed: {}
};
</script>
<style>
</style>