Doctre.vue 2.99 KB
Newer Older
wjj 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 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
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="12">
        <el-form-item label="File Receiver" prop="trnmod.trndoc.filrecv">
            <c-input  v-model="model.trnmod.trndoc.filrecv"  placeholder="请输入File Receiver"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Document tree" prop="trnmod.trndoc.doctrestm">
            <c-input  v-model="model.trnmod.trndoc.doctrestm"  placeholder="请输入Document tree"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onTrndocButshw">
            Sho&w
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onTrndocButadd">
            D&etails
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onTrndocButnew">
            &Add New
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onTrndocButattto">
            Attach to
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small"  icon="el-icon-delete" @click="onTrndocButdel">
            Delete
        </c-button>
       </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.trnmod.trndoc.doclbl"   data-path=".trnmod.trndoc.doclbl" > </span>
	</c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.trnmod.trndoc.shwinc">Show Incoming Messages</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.trnmod.trndoc.shwout">Show Outgoing Messages</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onTrndocButatt">
            Attach
        </c-button>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="Connected Documents" prop="trnmod.trndoc.condocstm">
            <c-input  v-model="model.trnmod.trndoc.condocstm"  placeholder="请输入Connected Documents"></c-input>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="" prop="trnmod.trndoc.rcvatt.seainf">
            <c-input  v-model="model.trnmod.trndoc.rcvatt.seainf"  placeholder="请输入"></c-input>
        </el-form-item>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
79
import commonProcess from "~/mixin/commonProcess";
wjj committed
80 81 82 83 84 85
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bctacc/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
86
    mixins: [commonProcess],
wjj committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100
    data(){
        return {

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

    }
}
</script>
<style>

</style>