Trnpan.vue 1.21 KB
Newer Older
wangguangchao 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
<template>
  <div class="eibs-tab">
                              
       <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>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
27
import commonProcess from "~/mixin/commonProcess";
wangguangchao committed
28 29 30 31 32 33
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infdid/Event"

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

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

    }
}
</script>
<style>

</style>