Trnpan.vue 2.04 KB
Newer Older
cyy committed
1
<template>
cyy committed
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 35 36 37
  <c-content class="eibs-tab" :height="200">

        <div class="infTopBtn">
            <el-button-group>
                <c-button size="small" type="primary" icon="el-icon-arrow-left"></c-button>
                <c-button size="small" type="primary" icon="el-icon-arrow-right"></c-button>
            </el-button-group>
            <c-button size="small" type="primary">Print</c-button>
            <c-button size="small" type="primary">Use</c-button>
            <c-button size="small" type="primary">Loginfo</c-button>
            <c-button size="small" type="primary">Display</c-button>
        </div>

        <c-row class="infrow" style="margin-top:50px;">
            <c-col :span="5" :offset="1">
                <el-form-item label="" prop="infcon.chksubcon" label-width="0">
                    <c-checkbox v-model="model.infcon.chksubcon">incl. all subcontracts</c-checkbox>
                </el-form-item>
            </c-col>
            <c-col :span="5">
                <el-form-item label="" prop="infcon.chktrnsta" label-width="0">
                    <c-checkbox v-model="model.infcon.chktrnsta">only active transactions</c-checkbox>
                </el-form-item>
            </c-col>
        </c-row>

        <c-row class="infrow">
            <c-col :span="22" :offset="1">
                <el-form-item label="" prop="infcon.trnstm" label-width="0">
                    <c-input type="textarea" :rows="4" v-model="model.infcon.trnstm" show-word-limit
                        placeholder="请输入stream for TRN to selected contract"></c-input>
                </el-form-item>
            </c-col>
        </c-row>

    </c-content>
cyy committed
38 39 40
</template>
<script>
import Api from "~/service/Api"
wangren committed
41
import commonProcess from "~/mixin/commonProcess";
cyy committed
42 43 44 45 46 47
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infbed/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
48
    mixins: [commonProcess],
cyy committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62
    data(){
        return {

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

    }
}
</script>
<style>

</style>