Txmp0.vue 3.44 KB
Newer Older
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 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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
<template>
  <div class="eibs-tab">    
                  
       <c-col :span="6">
        <el-form-item label="Group" prop="recpan.grpwrknam">
            <c-input  v-model="model.recpan.grpwrknam" maxlength="6"  placeholder="" :readonly=true></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="6">
        <el-form-item label="" prop="recpan.keywrk">
            <c-input  v-model="model.recpan.keywrk" maxlength="8"  placeholder="" :readonly=true></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="6">
        <el-form-item label="" prop="recpan.recget.sdamod.seainf">
            <c-input  v-model="model.recpan.recget.sdamod.seainf"  placeholder="" :readonly=true></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="6">
        <el-form-item label="Name" prop="rec.nam">
            <c-input  v-model="model.rec.nam" maxlength="40"  placeholder="" :readonly=true></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="24">
       <c-col :span="12">
        <el-form-item label="Language" prop="rec.uil">
        <c-input  v-model="model.rec.uil" style="width:100%"  placeholder=""  :readonly=true></c-input>
<!--
            <c-select v-model="model.rec.uil" style="width:100%" placeholder="" :readonly=true>
              </c-select>
-->
        </el-form-item>
       </c-col>
       </c-col>

        <c-col :span="24">                            
            <c-col :span="24">
                <el-form-item label="Text" prop="rec.txt">
                    <c-input type="textarea" v-model="model.rec.txt" style="width:100%;height:100%;"  :rows="10"  maxlength="200" show-word-limit placeholder="" :readonly=true></c-input>
                </el-form-item>
            </c-col>
        </c-col>

         <c-col :span="24">
                <el-form-item label="" label-width="15px">
                    
                    <c-button size="small" type="primary" @click="">
                        &lt;-Search
                    </c-button>
<!--
                    <c-button size="small" type="primary" @click="">
                         &lt;
                    </c-button>

                    <c-button size="small" type="primary" @click="">
                         &gt;
                    </c-button>
-->

                    <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>

                    <c-button size="small" type="primary" @click="">
                        Print
                    </c-button>

                    <c-button size="small" type="primary" @click="">
                        Loginfo
                    </c-button>

                    <c-button size="small" type="primary" @click="">
                        Exit
                    </c-button>

                </el-form-item>
            </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
88
import commonProcess from "~/mixin/commonProcess";
89 90 91 92 93 94
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Inftxm/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
95
    mixins: [commonProcess],
96 97 98 99 100 101 102 103 104 105 106 107 108 109
    data(){
        return {

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

    }
}
</script>
<style>

</style>