Rbip.vue 2.57 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
<template>
	<c-col class="eibs-tab">
		<c-col :span="12" style="padding-right: 20px">
			<c-col :span="24" class="fieldName">
				<el-form-item label="Reimbursement Bank" style="margin-bottom: 0;">
					<el-form-item label-width="0" style="margin-bottom: 10px;">
						<c-ptap :argadr="{ title: 'Reimbursement Bank', grp: 'ltdgrp', rol: 'rmt' }" :haveAdrLabel="true" :isAdrblk="true" :isFieldLabelVisible="false" disabled disabledDetailTrn="true" disabledExtkey="true" :model="model" ptytyp="B" :isLabel120="false"></c-ptap>
					</el-form-item>
				</el-form-item>
			</c-col>
			<c-col :span="24">
				<el-form-item label="Account Identification" prop="ltdgrp.rmt.pts.dftact">
					<c-select v-model="model.ltdgrp.rmt.pts.dftact" style="width: 100%" placeholder="请选择"></c-select>
				</el-form-item>
			</c-col>
			<c-col :span="24">
				<el-form-item label="Reimbursing Bank Account Identification" prop="ltdgrp.rec.rmbact">
					<c-input v-model="model.ltdgrp.rec.rmbact" style="width: 100%" disabled placeholder="请输入"></c-input>
				</el-form-item>
			</c-col>
			<c-col :span="24">
				<el-form-item label="Charges Definition" prop="ltdgrp.rec.rmbcha">
					<c-select v-model="model.ltdgrp.rec.rmbcha" dbCode='rmbcha' style="width: 100%" placeholder="请选择"></c-select>
				</el-form-item>
			</c-col>
			<c-col :span="24">
				<el-form-item label="Other Charges" prop="ltdgrp.blk.rmbcha">
					<c-input v-model="model.ltdgrp.blk.rmbcha" type="textarea" style="width: 100%" maxlength="65" show-word-limit placeholder="请输入"></c-input>
				</el-form-item>
			</c-col>
			<c-col :span="24">
				<el-form-item label="MT747 :77A:" prop="lttp.rmbnar">
					<c-input v-model="model.lttp.rmbnar" type="textarea" style="width: 100%" maxlength="65" show-word-limit placeholder="请输入"></c-input>
				</el-form-item>
			</c-col>
			<c-col :span="24">
				<el-form-item label="Applicable Rules RMB" prop="ltdgrp.rec.apprulrmb">
					<c-select v-model="model.ltdgrp.rec.apprulrmb" dbCode='apprmb' style="width: 100%" placeholder="请选择"></c-select>
				</el-form-item>
			</c-col>
			<c-col :span="24">
				<el-form-item label="Date of Authorisation to Reimburse" prop="ltdgrp.rec.autdat">
					<c-date-picker type="date" v-model="model.ltdgrp.rec.autdat" style="width: 100%" disabled placeholder="请选择日期" value-format="yyyy-MM-dd"></c-date-picker>
				</el-form-item>
			</c-col>
			

		</c-col>
		
	</c-col>
</template>
<script>
import event from "../event"
export default {
	inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
	data(){
		return{

		}
	}
}
</script>
<style>

</style>