Frmloapan.vue 1.06 KB
Newer Older
1 2 3 4
<template>
  <div class="eibs-tab">
                              
       <c-col :span="12">
wangyanjiao committed
5 6 7 8 9 10 11 12 13
        <c-button size="small" type="primary"  @click="onFrmcnf">
            &Load
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Redirect" prop="mtabut.frmloa">
            <c-select v-model="model.mtabut.frmloa" style="width:100%" placeholder="请选择Redirect">
              </c-select>
14
        </el-form-item>
wangyanjiao committed
15 16 17 18 19 20 21
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onFrmcls">
            &Close
        </c-button>
       </c-col>
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Botrad/Event"

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

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

    }
}
</script>
<style>

</style>