Doctre.vue 3.25 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
zhengxiaokui committed
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
    <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>
zhengxiaokui committed
94
    <c-edit-table :model="model" v-bind="doceot"> </c-edit-table>
zhengxiaokui committed
95 96 97
  </div>
</template>
<script>
zhengxiaokui committed
98
import Api from "~/service/Api";
wangren committed
99
import commonProcess from "~/mixin/commonProcess";
zhengxiaokui committed
100 101
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letopn/Event";
zhengxiaokui committed
102 103

export default {
zhengxiaokui committed
104 105
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
106
  mixins: [commonProcess],
zhengxiaokui committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
  data() {
    return {
      doceot: {
        columns: [
          {
            title: "列1",
            width: "120px",
            dataIndex: "rol",
            show: "input",
          },
          {
            title: "名称",
            width: "120px",
            dataIndex: "nam",
          },
          {
            title: "地址",
            width: "120px",
            dataIndex: "address",
          },
        ],
        urls: "trnmod.trndoc.doceot",
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
zhengxiaokui committed
135 136 137
</script>
<style>
</style>