Tk.vue 1.37 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
<template>
	<div class="eibs-tab">
		<c-col :span="24">
			<c-ptap-commons :requiredExtkey="true" :cols="65" :rows="12" :minRows="12" :maxRows="12" :model="model" :extCodes="['didgrp','blk']" lastModel="lcrgod" :title="(model.didgrp.rec.mytype=='H'||model.didgrp.rec.mytype=='')?'货物描述': (model.didgrp.rec.mytype=='F'?'服务描述':'货物/服务描述')" @handelChange="lcrgodChange"></c-ptap-commons>
		</c-col>

		<c-col :span="24">
			<c-ptap-commons :requiredExtkey="true" :cols="65" :rows="12" :minRows="12" :maxRows="12" :model="model" :extCodes="['didgrp','blk']"  lastModel="lcrdoc" title="单据要求"  @handelChange="lcrdocChange"></c-ptap-commons>
		</c-col>

		<c-col :span="24" >
			<c-ptap-commons :cols="65" :rows="12" :minRows="12" :maxRows="12" :model="model" :extCodes="['didgrp','blk']"  lastModel="adlcnd" title="附加条款" @handelChange="adlcndChange"></c-ptap-commons>
		</c-col>

		<c-col :span="24">
			<c-ptap-commons :cols="65" :rows="12" :minRows="12" :maxRows="12" :model="model" :extCodes="['didgrp','blk']"  lastModel="insbnk" title="给付款、承兑、议付行的指示" @handelChange="insbnkChange"></c-ptap-commons>
		</c-col>
	</div>
</template>
<script>
import event from "../event";
export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {
	};
  },
  created() {}
};
</script>
<style>
</style>