index.vue 4.44 KB
Newer Older
panziyi committed
1 2
<template>
  <div class="eContainer">
3
    <c-page title="出口保函注销">
wangna committed
4 5 6 7
    <el-form
      :model="model"
      :rules="rules"
      ref="modelForm"
8
      label-width="120px"
wangna committed
9 10 11 12 13 14
      label-position="right"
      size="small"
      :validate-on-rule-change="false"
    >
      <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick">
        <!--PD000026 -->
15 16 17 18 19
         <el-tab-pane label="业务信息" name="ovwp">
            <c-content>
              <m-ovwp :model="model" :codes="codes" />
            </c-content>
          </el-tab-pane>
20 21
              <el-tab-pane label="统一授信" name="limitbody">
          <m-limitbody :model="model" :codes="codes" />
wangna committed
22
        </el-tab-pane>
23

wangna committed
24 25 26 27 28 29 30 31
        <el-tab-pane
          label="Mt769"
          name="Mt769p"
          v-if="model.gidgrp.rec.purcan == 'RR'"
        >
          <m-mt769p :model="model" :codes="codes" />
        </el-tab-pane>
        <!--PD000027 -->
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
         <el-tab-pane label="费用/账务" name="engp,setpan,glepan">
         <c-content>
           <div class="eibs-tab">
             <el-collapse v-model="activeNames">
               <el-collapse-item title="表外记账" name="engp">
                 <!-- 表外记账 -->
                 <m-engp :model="model" :codes="codes" />
               </el-collapse-item>
               <el-collapse-item title="结算" name="setpan">
                 <!-- 结算 -->
                 <m-setpan :model="model" :codes="codes" />
               </el-collapse-item>
             </el-collapse>
           </div>
         </c-content>
       </el-tab-pane>
wangna committed
48
       
wangna committed
49
        <!--PD000000 -->
50
        <el-tab-pane label="备查/附言" name="coninfp">
Wuyuqiu committed
51
        <c-content>
wangna committed
52
          <m-coninfp :model="model" :codes="codes" />
Wuyuqiu committed
53
        </c-content>
wangna committed
54 55 56
        </el-tab-pane>

        <!--PD000529 -->
57
        <el-tab-pane label="报文/面函" name="docpan">
Wuyuqiu committed
58
        <c-content>
wangna committed
59
          <m-docpan :model="model" :codes="codes" />
Wuyuqiu committed
60
        </c-content>
wangna committed
61
        </el-tab-pane>
Wuyuqiu committed
62
        
wangna committed
63 64

        <!--PD000546 -->
65
        <el-tab-pane label="附件信息" name="doctre">
Wuyuqiu committed
66
          <c-content>
wangna committed
67
          <m-doctre :model="model" :codes="codes" />
Wuyuqiu committed
68
          </c-content>
wangna committed
69
        </el-tab-pane>
70 71
          <c-function-btn :handleSubmit="handleSubmit" :handleCheck="handleCheck" :handleStash="handleStash">
        </c-function-btn>
wangna committed
72 73

        <!--PD000001 -->
74
  
wangna committed
75
      </c-tabs>
panziyi committed
76
    </el-form>
wangna committed
77 78 79 80 81 82
    <c-grid-ety-prompt-dialog
      ref="etyDialog"
      :promptData="promptData"
      v-on:select-ety="selectEty"
    >
    </c-grid-ety-prompt-dialog>
83
    </c-page>
panziyi committed
84 85 86
  </div>
</template>
<script>
wangna committed
87 88 89
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import Getcan from "~/model/Getcan";
panziyi committed
90 91 92
import commonProcess from "~/mixin/commonProcess";

import commonFuncs from "~/mixin/commonFuncs";
wangna committed
93 94 95 96
import Check from "~/model/Getcan/Check";
import Default from "~/model/Getcan/Default";
import Pattern from "~/model/Getcan/Pattern";
import Canp from "./Canp";
panziyi committed
97

wangna committed
98 99 100 101 102 103 104
import Limitbody from "~/views/Public/Limitbody";
import Engp from "~/views/Public/Engp";
import Doctre from "~/views/Public/Doctre";
import Docpan from "~/views/Public/Docpan";
import Setpan from "~/views/Public/Setpan";
import Coninfp from "~/views/Public/Coninfp";
import Mt769p from "./Mt769p";
105 106
import Ovwp from "./Ovwp";

panziyi committed
107 108

export default {
wangna committed
109 110 111 112 113 114 115 116 117 118
  name: "Getcan",
  components: {
    "m-canp": Canp,
    "m-engp": Engp,
    "m-setpan": Setpan,
    "m-coninfp": Coninfp,
    "m-docpan": Docpan,
    "m-doctre": Doctre,
    "m-limitbody": Limitbody,
    "m-mt769p": Mt769p,
119
    "m-ovwp": Ovwp,
wangna committed
120 121 122 123 124 125 126 127 128
  },
  provide() {
    return {
      root: this,
    };
  },
  mixins: [commonProcess, commonFuncs], // 里面包含了Default、Check等的公共处理
  data() {
    return {
129
      tabVal: "ovwp",
wangna committed
130 131 132 133 134 135 136
      trnName: "getcan",
      model: new Getcan().data,
      checkRules: Check,
      defaultRules: Default,
      pattern: Pattern,
      rules: null,
      codes: { ...CodeTable },
137
      activeNames: ["engp"],
wangna committed
138 139 140 141 142 143 144 145
    };
  },
  methods: {
    myTabClick(tab) {
      this.tabClick(tab);
      /**
       *  do it yourself
       **/
panziyi committed
146
    },
wangna committed
147 148 149 150 151 152 153
  },
  created: async function () {
    console.log("进入getcan交易");
    let rtnmsg = await this.init({});
    if (rtnmsg.respCode == SUCCESS) {
      this.updateModel(rtnmsg.data);
      //TODO 处理数据逻辑
panziyi committed
154 155 156
      if (this.isInDisplay) {
        this.restoreDisplay();
      }
wangna committed
157 158
    } else {
      this.$notify.error({ title: "错误", message: "服务请求失败!" });
panziyi committed
159
    }
wangna committed
160 161
  },
};
panziyi committed
162 163 164
</script>
<style>
</style>