Doctre.vue 4.97 KB
Newer Older
cyy committed
1 2 3
<template>
  <div class="eibs-tab">
      <c-row class="infrow" style="margin-top:50px;">
潘际乾 committed
4
            <c-col :span="24" :offset="1">
cyy committed
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
                <c-row>
                    <c-col :span="24">
                        Outgoing Correspondence,Attachmentd and other Documents
                    </c-col>
                </c-row>
            </c-col>
        </c-row>

        <c-row class="infrow">
            <c-col :span="15" :offset="1">
                <c-row>
                    <c-col :span="22">
                        <el-form-item label="" prop="trnmod.trndoc.doctrestm" label-width="0px">
                            <c-input type="textarea" :rows="10" v-model="model.trnmod.trndoc.doctrestm"  placeholder="请输入Document tree"></c-input>
                        </el-form-item>
                    </c-col>
                </c-row>
            </c-col>
            <c-col :span="5" :offset="1" >
                <c-row>
                    <c-col :span="20">
                        <c-button size="small" type="primary"  @click="onTrndocButshw">
                            Show
                        </c-button>
                    </c-col>
                    <c-col :span="20" style="margin-top:10px;">
                        <c-button size="small" type="primary"  @click="onTrndocButadd">
                            Details
                        </c-button>
                    </c-col>
                                
                    <c-col :span="20" style="margin-top:10px;">
                        <c-button size="small" type="primary"  @click="onTrndocButnew">
                            Add New
                        </c-button>
                    </c-col>

                    <c-col :span="20" style="margin-top:10px;">
                        <c-button size="small" type="primary"  @click="onTrndocButattto">
                            Attach to
                        </c-button>
                    </c-col>
                                
                    <c-col :span="20" style="margin-top:10px;">
                        <c-button size="small"  icon="el-icon-delete" @click="onTrndocButdel">
                            Delete
                        </c-button>
                    </c-col>
                </c-row>
            </c-col>
        </c-row>            

        <c-row class="infrow">   
            <c-col :span="7" :offset="1">
                <c-row>
                    <c-col :span="12">
                        <c-checkbox v-model="model.trnmod.trndoc.shwinc">Show Incoming Messages</c-checkbox>
                    </c-col>
                </c-row>
            </c-col>
            <c-col :span="7" :offset="1">
                <c-row>
                    <c-col :span="12">
                        <c-checkbox v-model="model.trnmod.trndoc.shwout">Show Outgoing Messages</c-checkbox>
                    </c-col>    
                </c-row>
            </c-col>
            <c-col :span="5" :offset="1">
                <c-row>
                    <c-col :span="12">
                    </c-col>    
                </c-row>
            </c-col>
        </c-row>
        
        <!-- <c-row class="infrow">
            <c-col :span="15" :offset="1">
                <c-row>
                    <c-col :span="22">
                        <el-form-item label="" prop="trnmod.trndoc.condocstm" label-width="0px">
                            <c-input type="textarea" :rows="4" v-model="model.trnmod.trndoc.condocstm"  placeholder="请输入Connected Documents"></c-input>
                        </el-form-item>
                    </c-col>
                </c-row>
            </c-col>
            <c-col :span="5" :offset="1">
                <c-row>
                    <c-col :span="20">
                        <c-button size="small" type="primary"  @click="onTrndocButatt">
                            Attach
                        </c-button>
                    </c-col>
                    <c-col :span="20">
                        <el-form-item label="" prop="trnmod.trndoc.rcvatt.seainf" label-width="0px" style="margin-top:10px;">
                            <c-input v-model="model.trnmod.trndoc.rcvatt.seainf"  placeholder="请输入"></c-input>
                        </el-form-item>
                    </c-col>
                </c-row>
            </c-col>
        </c-row> -->


        <!-- <c-col :span="2" :offset="1">
            <c-row>
                <c-col :span="12">
                    <span  v-text="model.trnmod.trndoc.doclbl"   data-path=".trnmod.trndoc.doclbl" >doclbl</span>
                </c-col>
            </c-row>
        </c-col> -->
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
118
import commonProcess from "~/mixin/commonProcess";
cyy committed
119 120 121 122 123 124
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Letcan/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
125
    mixins: [commonProcess],
cyy committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139
    data(){
        return {

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

    }
}
</script>
<style>

</style>