Trnpan.vue 2.68 KB
Newer Older
niewei committed
1 2 3 4 5 6 7 8
<template>
    <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>
niewei committed
9 10
            <c-button size="small" type="primary">Use</c-button>
            <c-button size="small" type="primary">Loginfo</c-button>
niewei committed
11
        </div>
wangren committed
12
        <c-row>
niewei committed
13 14 15 16 17 18 19 20 21 22 23 24 25
            <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>
潘际乾 committed
26
            <c-col :span="24" :offset="1">
niewei committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
                <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-col :span="12">
	    <c-checkbox v-model="model.infcon.chksubcon">incl. all subcontracts</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.infcon.chktrnsta">only active transactions</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="stream for TRN to selected contract" prop="infcon.trnstm">
            <c-input  v-model="model.infcon.trnstm"  placeholder="请输入stream for TRN to selected contract"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onInfconButshw">
            &Display
        </c-button>
       </c-col>
    -->
  </c-content>
</template>
<script>
import Api from "~/service/Api"
wangren committed
58
import commonProcess from "~/mixin/commonProcess";
niewei committed
59 60 61 62 63 64
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infbfd/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
65
    mixins: [commonProcess],
niewei committed
66 67 68 69 70 71 72 73 74 75 76 77 78 79
    data(){
        return {

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

    }
}
</script>
<style>

</style>