Doctre.vue 8.97 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
吴佳 committed
3

潘际乾 committed
4 5 6 7 8 9
    <c-col :span="24" style="height: 24px">
      <el-form-item label="Outgoing Messages" class="messageLabel"></el-form-item>
    </c-col>
    <c-col :span="24" style="height: 0px">
        <el-divider></el-divider>
    </c-col>
吴佳 committed
10
    <c-col :span="24">
huangxin committed
11
      <c-istream-table-docpan 
潘际乾 committed
12 13
        :border="true"
        :list="data1"
潘际乾 committed
14 15 16
      >
        <el-table-column label="Type" width="auto">
          <template slot-scope="scope">
潘际乾 committed
17
            <span>{{ getType(scope.row.index) }}</span>
潘际乾 committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
          </template>
        </el-table-column>
        <el-table-column label="Document" width="auto">
          <template slot-scope="scope">
            <span>{{ model.trnmod.trndoc.doceot[scope.row.index].pandsc }}</span>
          </template>
        </el-table-column>
        <el-table-column label="Cre.TRN" width="auto"></el-table-column>
        <el-table-column label="Date" width="auto">
          <template>
            <span>{{ getNow() }}</span>
          </template>
        </el-table-column>
      </c-istream-table-docpan>
    </c-col>

    <c-col :span="24" style="height: 24px;margin-top: 20px;">
      <el-form-item label="Previous Messages" class="messageLabel"></el-form-item>
    </c-col>
    <c-col :span="24" style="height: 0px">
        <el-divider></el-divider>
    </c-col>
    <c-col :span="24">
huangxin committed
41
      <c-istream-table-docpan
潘际乾 committed
42 43
        :border="true"
        :list="data2"
潘际乾 committed
44 45 46 47 48
      >
        <el-table-column label="Type" width="auto"></el-table-column>
        <el-table-column label="Document" width="auto"></el-table-column>
        <el-table-column label="Cre.TRN" width="auto"></el-table-column>
        <el-table-column label="Date" width="auto"></el-table-column>
huangxin committed
49
      </c-istream-table-docpan>
潘际乾 committed
50 51 52
    </c-col>

    <!-- <c-col :span="24">
吴佳 committed
53 54 55 56 57 58 59 60
      <el-form-item
        style="text-align: left;"
        class="formItemLabel"
        label="Outgoing Correspondence,Attachments and other Documents"
        label-width="100%"
      >
      </el-form-item>
    </c-col>
潘际乾 committed
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
    <c-col :span="24"> 
        <c-col :span="14">                                     
          <c-col :span="24">
              <div style="height: 300px; width: 100%; border: 1px #ebeef5 solid">
                <el-tree
                  ref="menuTree"
                  :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="Connected Ducuments"
                  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">Show Incoming Messages</c-checkbox>
                </el-form-item>
              </c-col>
              <c-col :span="8" :offset="2">
                <el-form-item label="">
                  <c-checkbox v-model="isShow2">Show Outgoing Messages</c-checkbox>
                </el-form-item>
              </c-col>
            </c-col>
            
          </c-col>           
        <c-col :span="6" :offset="1">
            <c-col :span="24">
              <c-button size="small" type="primary" @click="onTrndocButshw">
                Show
              </c-button>
            </c-col>
吴佳 committed
104

潘际乾 committed
105 106 107 108 109
            <c-col :span="24" style="margin-top: 15px">
              <c-button size="small" type="primary" @click="onTrndocButadd">
                详情
              </c-button>
            </c-col>
吴佳 committed
110

潘际乾 committed
111 112 113 114 115
            <c-col :span="24" style="margin-top: 40px">
              <c-button size="small" type="primary" @click="onTrndocButnew">
                Add New
              </c-button>
            </c-col>
吴佳 committed
116

潘际乾 committed
117 118 119 120 121 122 123 124 125
            <c-col :span="24" style="margin-top: 15px">
              <c-button size="small" type="primary"
                :disabled="atoDisabled"
                @click="onTrndocButattto" 
                
              >
                Attach to
              </c-button>
            </c-col>
吴佳 committed
126

潘际乾 committed
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
            <c-col :span="24" style="margin-top: 15px">
              <c-button size="small" type="primary" @click="onTrndocButdel" 
                :disabled="delDisabled"
              >
                Delete
              </c-button>
            </c-col>
            <c-col :span="24" style="margin-top: 80px">
              <c-button size="small" type="primary" @click="onTrndocButatt" 
                :disabled="aDisabled"
              >
                Attach
              </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> -->
148 149 150 151
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
152
import commonProcess from "~/mixin/commonProcess";
153
import CodeTable from "~/config/CodeTable"
潘际乾 committed
154
import moment from 'moment'
155 156

export default {
157
    inject: ['root'],
wangren committed
158
    mixins: [commonProcess],
159 160 161
    props:["model","codes"],
    data(){
        return {
吴佳 committed
162
            data1: [],
潘际乾 committed
163
            data2: [],
吴佳 committed
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
            isShow1: false,
            isShow2: false,
            aDisabled : true,
            atoDisabled : true,
            delDisabled : true,
            data: [
                {
                label: "CHINA EVERBRIGHT BANK",
                children: [{ label: "'企业当前管理信息'via" }],
                },
                {
                label: "Internal",
                children: [{ label: "'收账通知'via" }],
                },
            ],
179 180
        }
    },
潘际乾 committed
181
    methods:{
潘际乾 committed
182
        getType(idx) {
zhujiazhan committed
183 184
          console.log(this.codes);

潘际乾 committed
185 186 187 188 189 190 191 192
          for (let i = 0; i < this.codes.doceotCortyp.length; i++) {
            const c = this.codes.doceotCortyp[i];
            if (this.model.trnmod.trndoc.doceot[idx].cortyp === c.value) {
              return c.label;
            }
          }
          return "";
        },
潘际乾 committed
193 194 195
        getNow() {
          return moment().format('yyyy-MM-DD')
        },
吴佳 committed
196 197 198 199 200 201 202 203 204 205
        handleNodeClick(data) {
            if(!data.children){ //如果没有叶子节点 ,按钮置灰
                this.atoDisabled = false;
                this.delDisabled = false;
            }else{
                this.atoDisabled = true;
                this.delDisabled = true;
            }
        },
        defaultProps(){},
潘际乾 committed
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
        async onTrndocButshw() {
          let rtnmsg = await this.executeRule("trndoc.butshw")
          if (rtnmsg.respCode == SUCCESS) {
              //TODO 处理数据逻辑

          }
          else {
              this.$notify.error({ title: '错误', message: '服务请求失败!' });
          }
        },
        async onTrndocButadd() {
          let rtnmsg = await this.executeRule("trndoc.butadd")
          if (rtnmsg.respCode == SUCCESS) {
              //TODO 处理数据逻辑

          }
          else {
              this.$notify.error({ title: '错误', message: '服务请求失败!' });
          }
        },
        async onTrndocButnew() {
          let rtnmsg = await this.executeRule("trndoc.butnew")
          if (rtnmsg.respCode == SUCCESS) {
              //TODO 处理数据逻辑

          }
          else {
              this.$notify.error({ title: '错误', message: '服务请求失败!' });
          }
        },
        async onTrndocButattto() {
          let rtnmsg = await this.executeRule("trndoc.butattto")
          if (rtnmsg.respCode == SUCCESS) {
              //TODO 处理数据逻辑

          }
          else {
              this.$notify.error({ title: '错误', message: '服务请求失败!' });
          }
        },
        async onTrndocButdel() {
          let rtnmsg = await this.executeRule("trndoc.butdel")
          if (rtnmsg.respCode == SUCCESS) {
              //TODO 处理数据逻辑

          }
          else {
              this.$notify.error({ title: '错误', message: '服务请求失败!' });
          }
        },
        async onTrndocButatt() {
          let rtnmsg = await this.executeRule("trndoc.butatt")
          if (rtnmsg.respCode == SUCCESS) {
              //TODO 处理数据逻辑

          }
          else {
              this.$notify.error({ title: '错误', message: '服务请求失败!' });
          }
        },
吴佳 committed
266
    },
潘际乾 committed
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
    watch: {
        "model.trnmod.trndoc.doceot": {
            handler(val, oldVal) {
                var arr = [];
                let k = 0;
                for (let i = 0; i < val.length; i++) {
                    if (val[i].role != "") {
                        arr[k++] = val[i];
                    }
                }
                this.data1 = arr
            },
            immediate: true
        }
    },
282 283 284 285 286 287
    created:function(){

    }
}
</script>
<style>
吴佳 committed
288 289 290
.formItemLabel >>> .el-form-item__label{
    text-align: left;
}
291
</style>