Doctre.vue 4.37 KB
Newer Older
cl committed
1
<template>
cl committed
2 3 4 5 6 7
    <div class="eibs-tab">
      <c-col :span="24">
        <el-form-item
          label="发送信件, 附件及其他单据"
          label-width="400px"
        >
cl committed
8
        </el-form-item>
cl committed
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
      </c-col>
  
      <c-col :span="24">
        <!-- ========================左====================== -->
        <c-col :span="14">
          <c-col :span="24">
            <div style="height: 300px; width: 100%;border:1px #ebeef5 solid">
              <el-tree
                :data="data"
                :props="defaultProps"
                @node-click="handleNodeClick"
              ></el-tree>
            </div>
          </c-col>
  
          <c-col :span="24" style="margin-top:10px">
            <c-col :span="4">
              <el-form-item label="关联单据" v-show="isShow1 || isShow2"></el-form-item>
              <el-form-item label="" v-show="!(isShow1 || isShow2)"></el-form-item>
            </c-col>
            <c-col :span="8">
              <el-form-item label="">
                <c-checkbox v-model="isShow1">显示收到的信息</c-checkbox>
              </el-form-item>
              <!-- <c-checkbox v-model="isShow1">Show Incoming Messages</c-checkbox> -->
            </c-col>
            <c-col :span="8" :offset="2">
              <el-form-item label="">
                <c-checkbox v-model="isShow2">显示以前发出的信息</c-checkbox>
              </el-form-item>
              <!-- <c-checkbox v-model="isShow2">Show Outgoing Messages</c-checkbox> -->
            </c-col>
          </c-col>
          <c-col :span="22" :offset="1">
            <c-table
              :border="true"
              :list="data1"
              style="width:80%,text-align:center"
              v-show="isShow1 || isShow2"
            >
              <el-table-column label="类型" width="auto"></el-table-column>
              <el-table-column label="单据" width="auto"></el-table-column>
              <el-table-column label="Cre.TRN" width="auto"></el-table-column>
              <el-table-column label="日期" width="auto"></el-table-column>
              <el-table-column label="" width="auto"></el-table-column>
              <el-table-column label="" width="auto"></el-table-column>
            </c-table>
          </c-col>
        </c-col>
  
        <!-- ==============右============= -->
        <c-col :span="6" :offset="1">
          <c-col :span="24">
            <c-button size="small" type="primary" @click="onTrndocButshw">
              显示
            </c-button>
          </c-col>
  
          <c-col :span="24" style="margin-top: 15px">
            <c-button size="small" type="primary" @click="onTrndocButadd">
              明细
            </c-button>
          </c-col>
  
          <c-col :span="24" style="margin-top: 40px">
            <c-button size="small" type="primary" @click="onTrndocButnew">
              新加
            </c-button>
          </c-col>
  
          <c-col :span="24" style="margin-top: 15px">
            <c-button size="small" type="primary" @click="onTrndocButattto">
              附加
            </c-button>
          </c-col>
  
          <c-col :span="24" style="margin-top: 15px">
            <c-button size="small" icon="el-icon-delete" @click="onTrndocButdel">
              删除
            </c-button>
          </c-col>
          <c-col :span="24" style="margin-top: 80px">
            <c-button size="small" type="primary" @click="onTrndocButatt">
              附加
            </c-button>
          </c-col>
          <c-col :span="24" style="margin-top: 150px">
            <c-button size="small" type="primary" @click="onTrndocButatt">
              i
            </c-button>
          </c-col>
        </c-col>
      </c-col>
    </div>
  </template>
  <script>
  import Api from "~/service/Api";
wangren committed
106
  import commonProcess from "~/mixin/commonProcess";
cl committed
107 108 109 110
  import CodeTable from "~/config/CodeTable";
  import Event from "~/model/Cltset/Event";
  
  export default {
cl committed
111
    inject: ['root'],
cl committed
112
    props: ["model", "codes"],
wangren committed
113
    mixins: [commonProcess],
cl committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
    data() {
      return {
        data1:[],
        isShow1: false,
        isShow2: false,
        data: [
          {
            label: "Internal",
            children: [{ label: "'Free Message' via Letter" }],
          },
        ],
      };
    },
    methods: { ...Event,
    handleNodeClick(){} ,
    defaultProps(){}
cl committed
130
    },
cl committed
131 132 133 134 135 136
    created: function () {},
  };
  </script>
  <style>
  </style>