index.vue 4.32 KB
Newer Older
1 2 3
<template>
  <div class="eContainer">
    <c-page title="出口信用证单据承兑">
WF1020 committed
4
    <!-- <c-bus-button :$pntvm="this"></c-bus-button> -->
5

WF1020 committed
6
    <!-- <c-function-btn>
7 8 9 10 11 12 13 14 15
      <el-button size="small">流程附言</el-button>
      <el-button size="small">交易历史</el-button>
      <el-button size="small">备忘录</el-button>
      <el-button size="small">影像信息</el-button>
       <el-button size="small">保存模板</el-button> -->
      <!-- <el-button size="small">使用模板</el-button> -->
      <!-- <el-button size="small">制裁信息</el-button>
       <el-button size="small">拆分报文</el-button> -->
      <!-- <el-button size="small">智能提示</el-button>
WF1020 committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
    </c-function-btn> --> 

    <el-form
      :model="model"
      :rules="rules"
      ref="modelForm"
      label-width="120px"
      label-position="right"
      size="small"
      :validate-on-rule-change="false"
    >
      <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick">
        <!--PD000033 -->
        <el-tab-pane label="业务信息" name="ovwp">
          <c-content>
          <m-ovwp :model="model" :codes="codes" />
        </c-content>
        </el-tab-pane>

    <!--PD000001 -->
    <el-tab-pane label="统一授信" name="limitbody">
37 38 39 40 41
            <c-content>
              <m-limitbody :model="model" :codes="codes" />
            </c-content>
          </el-tab-pane>

WF1020 committed
42 43 44
          <!--PD000027 -->
          <!--PD000027 -->
          <el-tab-pane label="表外记账" name="engp">
45
              <c-content>
WF1020 committed
46 47
                <!-- 表外记账 -->
                <m-engp :model="model" :codes="codes" />
48 49 50 51
              </c-content>
            </el-tab-pane>

            <!--PD000027 -->
panziyi committed
52
            <el-tab-pane label="费用/账务" name="setmod">
53 54 55 56 57 58 59 60 61 62 63
              <c-content>
                <m-setmod
                  :model="model"
                  :codes="codes"
                />
              </c-content>
            </el-tab-pane>

            <!--PD000027 -->
            <el-tab-pane label="会计分录" name="glepan">
              <c-content>
WF1020 committed
64
                <m-glentry :model="model" :codes="codes" />
65 66
              </c-content>
            </el-tab-pane>
WF1020 committed
67 68 69 70 71 72 73 74 75 76
        <!--PD000000 -->
        <el-tab-pane label="备查/附言" name="coninfp">
        <c-content>
          <m-coninfp :model="model" :codes="codes" />
          </c-content>
        </el-tab-pane>
       

       <!--PD000529 -->
       <el-tab-pane label="报文/面函" name="docpan">
77 78 79 80 81 82
            <c-content>
              <m-docpan :model="model" :codes="codes" />
            </c-content>
          </el-tab-pane>

          <!--PD000546 -->
WF1020 committed
83
        <el-tab-pane label="附件信息" name="doctre">
84 85 86
            <c-content>
              <m-doctre :model="model" :codes="codes" />
            </c-content>
WF1020 committed
87
        </el-tab-pane>
88 89


WF1020 committed
90 91 92 93 94 95
      </c-tabs>
    </el-form>
    <c-function-btn
      :handleSubmit="handleSubmit"
      :handleCheck="handleCheck"
      :handleStash="handleStash">
96 97 98 99 100 101
      </c-function-btn>

    </c-page>
  </div>
</template>
<script>
WF1020 committed
102 103
import Api from "~/service/Api";
import event from '../event';
104
import CodeTable from "~/config/CodeTable";
WF1020 committed
105 106
import Betacc from "../model";
import operationFunc from "~/mixin/operationFunc";
107
import Accp from "./Accp";
WF1020 committed
108 109
import Engp from "~/components/business/engp/views";
import Doctre from "~/components/business/doctre/views";
110 111 112
import Coninfp from "~/components/business/coninfp/views";
import Docpan from "~/components/business/docpan/views";
import Limitbody from "~/components/business/limitbody/views";
WF1020 committed
113 114
import Glentry from "~/components/business/glentry/views";
import Setmod from "~/components/business/setmod/views";
115 116 117 118 119 120
import Ovwp from "./Ovwp";

export default {
  name: "Betacc",
  components: {
    "m-accp": Accp,
WF1020 committed
121
    "m-setmod": Setmod,
122 123 124 125 126
    "m-engp": Engp,
    "m-docpan": Docpan,
    "m-doctre": Doctre,
    "m-coninfp": Coninfp,
    "m-limitbody": Limitbody,
WF1020 committed
127
    "m-glentry": Glentry,
128 129 130 131 132 133 134
    "m-ovwp": Ovwp,
  },
  provide() {
    return {
      root: this,
    };
  },
WF1020 committed
135
  mixins: [event,operationFunc], // 里面包含了Default、Check等的公共处理
136 137 138 139 140
  data() {
    return {
      tabVal: "ovwp",
      trnName: "betacc",
      model: new Betacc().data,
WF1020 committed
141
      rules: null,
142 143 144 145 146 147
      codes: {
        ...CodeTable,
      },
      activeNames: ["engp"],
    };
  },
WF1020 committed
148 149 150
  methods: {
   
  },
WF1020 committed
151 152 153
  mounted () {
    this.init()
  },
154 155
};
</script>
WF1020 committed
156 157
<style>
</style>