index.vue 4.57 KB
Newer Older
李少勇 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<template>
  <div class="eibs-tab">
    <c-col :span="24" style="height: 24px; margin-bottom: 20px">
      <el-form-item
        label="发出面函/报文"
        class="messageLabel"
        label-width="96px"
      ></el-form-item>
    </c-col>
    <c-col :span="24" style="height: 0px">
      <el-divider></el-divider>
    </c-col>
    <c-col :span="24">
WF1020 committed
14
      <el-table :border="true" :data="model.trnmod.doctreTableData1">
15 16 17 18 19
        <el-table-column label="类型" width="auto" prop="rol"></el-table-column>
        <el-table-column label="名称" width="auto" prop="pandsc"></el-table-column>
        <el-table-column label="创建交易" width="auto" prop="inifrm"></el-table-column>
        <el-table-column label="创建日期" width="auto" prop="credat"></el-table-column>
      </el-table>
李少勇 committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
    </c-col>

    <c-col
      :span="24"
      style="height: 24px; margin-top: 20px; margin-bottom: 20px"
    >
      <el-form-item
        label="前置面函/报文"
        class="messageLabel"
        label-width="96px"
      ></el-form-item>
    </c-col>
    <c-col :span="24" style="height: 0px">
      <el-divider></el-divider>
    </c-col>
    <c-col :span="24">
WF1020 committed
36
      <el-table :border="true" :data="model.trnmod.doctreTableData2">
37 38 39 40 41
        <el-table-column label="类型" width="auto" prop="rol"></el-table-column>
        <el-table-column label="名称" width="auto" prop="pandsc"></el-table-column>
        <el-table-column label="创建交易" width="auto" prop="inifrm"></el-table-column>
        <el-table-column label="创建日期" width="auto" prop="credat"></el-table-column>
      </el-table>
李少勇 committed
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
    </c-col>
  </div>
</template>
<script>
import moment from 'moment';

export default {
  inject: ['root'],
  mixins: [],
  props: ['model', 'codes'],
  data() {
    return {
      isShow1: false,
      isShow2: false,
      aDisabled: true,
      atoDisabled: true,
      delDisabled: true,
      data: [
        {
          label: '中国光大银行',
          children: [{ label: "'企业当前管理信息'via" }],
        },
        {
          label: 'Internal',
          children: [{ label: "'收账通知'via" }],
        },
      ],
    };
  },
  methods: {
WF1020 committed
72 73 74 75 76 77 78 79 80
    // getType(idx) {
    //   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
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 106 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 135 136 137 138 139 140 141 142 143
    getNow() {
      return moment().format('yyyy-MM-DD');
    },
    handleNodeClick(data) {
      if (!data.children) {
        //如果没有叶子节点 ,按钮置灰
        this.atoDisabled = false;
        this.delDisabled = false;
      } else {
        this.atoDisabled = true;
        this.delDisabled = true;
      }
    },
    defaultProps() {},
    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: '服务请求失败!' });
      }
    },
  },
WF1020 committed
144
  watch: {},
WF1020 committed
145 146
  created () {
    console.log('====11', this.model)
李少勇 committed
147 148 149 150 151 152 153 154
  },
};
</script>
<style scoped>
.formItemLabel >>> .el-form-item__label {
  text-align: left;
}
</style>
WF1020 committed
155