Rgfdet.vue 739 Bytes
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
<template>
  <div class="eibs-tab">

    <c-col :span="20">
      <c-ptap-commons  :disabledButton="true" :disabled="true" :cols="65" :rows="10" :minRows="10" :maxRows="10" :model="model" :extCodes="[]" lastModel="usadet" title="远期单据指示"></c-ptap-commons>
    </c-col>

    <c-col :span="20">
      <c-ptap-commons  :disabledButton="true" :disabled="true" :cols="65" :rows="10" :minRows="10" :maxRows="10" :model="model" :extCodes="[]" lastModel="addphr" title="偿付条款"></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>