Doctre.vue 3.48 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
<template>
    <div class="eibs-tab">
        <c-col :span="19">
            <c-col>
                <el-form-item label="File Receiver">
                    <c-input
                        type="textarea"
                        v-model="model.trnmod.trndoc.filrecv"
                        placeholder="请输入File Receiver"
                        :rows="10"
                    ></c-input>
                </el-form-item>
            </c-col>

            <c-col>
                <el-form-item label="Document tree">
                    <c-input
                        type="textarea"
                        :rows="10"
                        v-model="model.trnmod.trndoc.doctrestm"
                        placeholder="请输入Document tree"
                    ></c-input>
                </el-form-item> </c-col
        ></c-col>
        <c-col :offset="1" :span="4">
            <c-col>
                <c-button size="small" type="primary" @click="onTrndocButshw">
                    Show
                </c-button>
            </c-col>

            <c-col>
                <c-button size="small" type="primary" @click="onTrndocButadd">
                    Details
                </c-button>
            </c-col>

            <c-col>
                <c-button size="small" type="primary" @click="onTrndocButnew" >
                    Add New
                </c-button>
            </c-col>

            <c-col>
                <c-button size="small" type="primary" @click="onTrndocButattto" disabled>
                    Attach to
                </c-button>
            </c-col>

            <c-col>
                <c-button type="primary" size="small" @click="onTrndocButdel" disabled>
                    Delete
                </c-button>
            </c-col>
            <c-col>
                <c-button size="small" type="primary" @click="onTrndocButatt" disabled>
                    Attach
                </c-button>
            </c-col>
        </c-col>

        <!-- <c-col :span="12">
            <span
                v-text="model.trnmod.trndoc.doclbl"
                data-path=".trnmod.trndoc.doclbl"
            >
            </span>
        </c-col> -->

        <c-col :offset="8" :span="4">
            <c-checkbox v-model="model.trnmod.trndoc.shwinc"
                >Show Incoming Messages</c-checkbox
            >
        </c-col>

        <c-col :span="4">
            <c-checkbox v-model="model.trnmod.trndoc.shwout"
                >Show Outgoing Messages</c-checkbox
            >
        </c-col>

        <!-- <c-col :span="12">
            <el-form-item label="Connected Documents">
                <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="">
                <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
103
import commonProcess from "~/mixin/commonProcess";
104 105 106 107 108 109
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bttcan/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
110
    mixins: [commonProcess],
111 112 113 114 115 116 117 118 119 120 121 122 123 124
    data(){
        return {

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

    }
}
</script>
<style>

</style>