<template>
  <div class="eContainer">
    <c-page title="保函索赔编辑参考号">
      <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">

          <el-tab-pane label="业务信息" name="ovwp">
            <c-content>
              <m-ovwp :model="model" :codes="codes" />
            </c-content>
          </el-tab-pane>
        </c-tabs>
      </el-form>

          <!-- 底部按钮 -->
      <c-function-btn
        :handleSubmit="handleSubmit"
        :handleCheck="handleCheck"
        :handleStash="handleStash"
        ref="commonBtn"
        @handleSureWarning="handleSureWarning"
      ></c-function-btn>
    </c-page>
  </div>
</template>
<script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable";
import Gftadd from "../model";
import commonDepend from "~/mixin/commonDepend";
import operationFunc from "~/mixin/operationFunc";
import event from "../event";
import Check from "../model/check";
import Default from "../model/default";
import buildFn from '../event/buildCommons.js';
import Ovwp from "./Ovwp";

export default {
  name: "Gftadd",
  components: {
    "m-ovwp": Ovwp,
  },
  provide() {
    return {
      root: this,
      activeNames: ["ovwp","setmod"]
    };
  },
  mixins: [Check, operationFunc,event,commonDepend,Default,buildFn], // 里面包含了Default、Check等的公共处理
  data() {
    return {
      tabVal: "ovwp",
      trnName: "gftadd",
      trnType: "",
      model: new Gftadd().data,
			codes: { ...CodeTable },
    };
  },
  methods: {
  },
  created() {
    console.log("进入Gftadd交易");
    let params = {
      transName: this.trnName,
      gidgrp: {
        rec: {
          inr: this.$route.query.gidinr || ''
        }
			},
      gcdgrp: {
        rec: {
         inr: this.$route.query.inr
        }
      }
    };
    this.init(params).then(() => {
      this.changeIschktyp();
    });
  }
};
</script>
<style>
</style>