<template>
    <c-content class="eibs-tab" :height="200">
        <div class="infTopBtn">
            <c-button size="small" type="primary">toSearch</c-button>
            <el-button-group>
                <c-button size="small" type="primary" icon="el-icon-arrow-left" disabled></c-button>
                <c-button size="small" type="primary" icon="el-icon-arrow-right" disabled></c-button>
            </el-button-group>
            <c-button size="small" type="primary">Print</c-button>
            <c-button size="small" type="primary" disabled>Use</c-button>
            <c-button size="small" type="primary" disabled>Loginfo</c-button>
            <c-button size="small" type="primary">Exit</c-button>
        </div>

        <c-row class="infrow" style="margin-top:50px;">
            <c-col :span="8" :offset="1">
                <c-checkbox v-model="model.infcon.chksubcon">
                    incl. all subcontracts
                </c-checkbox>
            </c-col>
                        
            <c-col :span="14">
                <c-checkbox v-model="model.infcon.chktrnsta">
                    only active transactions
            </c-checkbox>
            </c-col>

            <!-- stream for TRN to selected contract          -->
            <c-col :span="22" :offset="1">
                <el-form-item label-width="10px"  prop="infcon.trnstm">
                    <c-input 
                        type="textarea" 
                        :rows="12" 
                        v-model="model.infcon.trnstm"  
                        placeholder="请输入stream for TRN to selected contract"
                    ></c-input>
                </el-form-item>
            </c-col>
        </c-row>
    </c-content>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infled/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>