Trnpwfm.vue 1.63 KB
Newer Older
liuxin committed
1 2 3
<template>
  <div class="eibs-tab">
                                               
潘际乾 committed
4
       <c-col :span="12">
liuxin committed
5 6 7 8
        <el-form-item label="Table Used to Store Associated Object">
            <c-select v-model="model.wfmmod.wfs.objtyp" style="width:100%" placeholder="请选择Table Used to Store Associated Object">
              </c-select>
        </el-form-item>
潘际乾 committed
9
       </c-col>
liuxin committed
10
                  
潘际乾 committed
11
       <c-col :span="12">
liuxin committed
12 13 14
        <el-form-item label="Object">
            <c-input  v-model="model.wfmmod.wfs.objinr" maxlength="8"  placeholder="请输入Object"></c-input>
        </el-form-item>
潘际乾 committed
15
       </c-col>             
liuxin committed
16
                                   
潘际乾 committed
17
       <c-col :span="12">
liuxin committed
18 19 20
        <el-form-item label="External Readable Object Identification">
            <c-input  v-model="model.wfmmod.wfs.objnam" maxlength="40"  placeholder="请输入External Readable Object Identification"></c-input>
        </el-form-item>
潘际乾 committed
21
       </c-col>             
liuxin committed
22
                  
潘际乾 committed
23
       <c-col :span="12">
liuxin committed
24 25 26
        <el-form-item label="WFEs for transaction for display">
            <c-input  v-model="model.recpan.wfestm"  placeholder="请输入WFEs for transaction for display"></c-input>
        </el-form-item>
潘际乾 committed
27
       </c-col>             
liuxin committed
28 29 30 31
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
32
import commonProcess from "~/mixin/commonProcess";
liuxin committed
33
import CodeTable from "~/config/CodeTable"
liuxin committed
34
import Event from "~/model/Trnrel/Event"
liuxin committed
35 36

export default {
37
    inject: ['root'],
liuxin committed
38
    props:["model","codes"],
wangren committed
39
    mixins: [commonProcess],
liuxin committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53
    data(){
        return {

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

    }
}
</script>
<style>

</style>