Fecp.vue 1.07 KB
Newer Older
杜大兵 committed
1 2
<template>
  <div class="eibs-tab">
杜大兵 committed
3
    <c-row>
杜大兵 committed
4
        <c-col :span="22" :offset="1">
杜大兵 committed
5 6 7 8
            <span>Fee Conditions</span>
        </c-col>
    </c-row>
    <c-row>
杜大兵 committed
9
        <c-col :span="22" :offset="1">
杜大兵 committed
10 11 12 13 14 15 16 17 18 19 20
            <el-form-item label="" label-width="0px" prop="trnmod.ptsmod.fecinf.fecstm">
                <c-input  
                    type="textarea"
                    :rows="10"
                    v-model="model.trnmod.ptsmod.fecinf.fecstm"  
                    placeholder="请输入Stream of fee conditions of passed object"
                ></c-input>
            </el-form-item>
        </c-col>
    </c-row>                                   
      
杜大兵 committed
21 22 23 24
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
25
import commonProcess from "~/mixin/commonProcess";
杜大兵 committed
26 27 28 29 30 31
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bptcan/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
32
    mixins: [commonProcess],
杜大兵 committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>