<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 Gctadd from "../model/index";
import operationFunc from "~/mixin/operationFunc";
import commonDepend from "~/mixin/commonDepend";
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: "Gctadd",
  components: {
    "m-ovwp": Ovwp,
  },
  provide() {
    return {
      root: this
    };
  },
  mixins: [Check, operationFunc,event,commonDepend, Default,buildFn], // 里面包含了Default、Check等的公共处理
  data() {
    return {
      tabVal: "ovwp",
      trnName: "gctadd",
      trnType: "",
      model: new Gctadd().data,
      codes: { ...CodeTable },
      activeNames: ["ovwp","setmod"],
    };
  },
  methods: {
  },
  created () {
    console.log("进入gctadd交易");
    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>