Sepinfp.vue 1.06 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="12">
	    <c-checkbox v-model="model.infcon.setflg">show temporary settlement that already settled</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.infcon.sepdelflg">show temporary settlement that already deleted</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="stream of SEPs" prop="infcon.sepstm">
            <c-input  v-model="model.infcon.sepstm"  placeholder="请输入stream of SEPs"></c-input>
        </el-form-item>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
21
import commonProcess from "~/mixin/commonProcess";
22 23 24 25 26 27
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infbpd/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
28
    mixins: [commonProcess],
29 30 31 32 33 34 35 36 37 38 39 40 41 42
    data(){
        return {

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

    }
}
</script>
<style>

</style>