Fecp.vue 665 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 27
<template>
  <div class="eibs-tab">
    <!-- SF000002 : Fee Conditions -->

    <!-- <c-col :span="12">
        <el-form-item label="Stream of fee conditions of passed object" prop="trnmod.ptsmod.fecinf.fecstm">
            <c-input  v-model="model.trnmod.ptsmod.fecinf.fecstm"  :placeholder="$t('other.please_enter')+'Stream of fee conditions of passed object'"></c-input>
        </el-form-item>
       </c-col> -->
  </div>
</template>
<script>
import Event from "../event";

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