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

潘际乾 committed
4
    <c-col :span="24" style="height: 24px;margin-bottom: 20px;">
5
      <el-form-item label="发出面函/报文" class="messageLabel" label-width="96px"></el-form-item>
潘际乾 committed
6 7 8 9
    </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
        <el-table-column label="类型" width="auto">
潘际乾 committed
16
          <template slot-scope="scope">
潘际乾 committed
17
            <span>{{ getType(scope.row.index) }}</span>
潘际乾 committed
18 19
          </template>
        </el-table-column>
20
        <el-table-column label="名称" width="auto">
潘际乾 committed
21 22 23 24
          <template slot-scope="scope">
            <span>{{ model.trnmod.trndoc.doceot[scope.row.index].pandsc }}</span>
          </template>
        </el-table-column>
25 26
        <el-table-column label="创建交易" width="auto"></el-table-column>
        <el-table-column label="创建日期" width="auto">
潘际乾 committed
27 28 29 30 31 32 33
          <template>
            <span>{{ getNow() }}</span>
          </template>
        </el-table-column>
      </c-istream-table-docpan>
    </c-col>

潘际乾 committed
34
    <c-col :span="24" style="height: 24px;margin-top: 20px;;margin-bottom: 20px;">
35
      <el-form-item label="前置面函/报文" class="messageLabel" label-width="96px"></el-form-item>
潘际乾 committed
36 37 38 39 40
    </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="类型" 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>
huangxin committed
49
      </c-istream-table-docpan>
潘际乾 committed
50 51
    </c-col>

jianglong committed
52
    
53 54 55 56
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
57
import commonProcess from "~/mixin/commonProcess";
58
import CodeTable from "~/config/CodeTable"
潘际乾 committed
59
import moment from 'moment'
60 61

export default {
62
    inject: ['root'],
wangren committed
63
    mixins: [commonProcess],
64 65 66
    props:["model","codes"],
    data(){
        return {
吴佳 committed
67
            data1: [],
潘际乾 committed
68
            data2: [],
吴佳 committed
69 70 71 72 73 74 75
            isShow1: false,
            isShow2: false,
            aDisabled : true,
            atoDisabled : true,
            delDisabled : true,
            data: [
                {
jianglong committed
76
                label: "中国光大银行",
吴佳 committed
77 78 79 80 81 82 83
                children: [{ label: "'企业当前管理信息'via" }],
                },
                {
                label: "Internal",
                children: [{ label: "'收账通知'via" }],
                },
            ],
84 85
        }
    },
潘际乾 committed
86
    methods:{
潘际乾 committed
87
        getType(idx) {
zhujiazhan committed
88

潘际乾 committed
89 90 91 92 93 94 95 96
          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
97 98 99
        getNow() {
          return moment().format('yyyy-MM-DD')
        },
吴佳 committed
100 101 102 103 104 105 106 107 108 109
        handleNodeClick(data) {
            if(!data.children){ //如果没有叶子节点 ,按钮置灰
                this.atoDisabled = false;
                this.delDisabled = false;
            }else{
                this.atoDisabled = true;
                this.delDisabled = true;
            }
        },
        defaultProps(){},
潘际乾 committed
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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
        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
170
    },
潘际乾 committed
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
    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
        }
    },
186 187 188 189 190
    created:function(){

    }
}
</script>
191
<style scoped>
吴佳 committed
192 193 194
.formItemLabel >>> .el-form-item__label{
    text-align: left;
}
195
</style>