<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>

          <!-- <el-tab-pane label="备查/附言" name="addbcb">
            <c-content>
              <m-addbcb :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 CodeTable from "~/config/CodeTable";
import Nctadd from "../model/index";
import Ovwp from "./Ovwp";

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';

export default {
  name: "Nctadd",
  components: {
    "m-ovwp": Ovwp,
  },
  provide() {
    return {
      root: this
    };
  },
    mixins: [operationFunc, event, commonDepend,Default,buildFn,Check],
  data() {
    return {
      tabVal: "ovwp",
      trnName: "nctadd",
      trnType: "",
      model: new Nctadd().data,
      codes: { ...CodeTable },
        lang:"CN"
    };
  },
  methods: {
  },
  created: async function() {
    console.log("进入nctadd交易");
    let params = {
      transName: this.trnName,
      nidgrp: {
        rec: {
          inr: this.$route.query.gidinr || ""
        }
      },
      ncdgrp: {
        rec: {
          inr: this.$route.query.inr || ""
        }
      }
    };
    this.init(params);

    //     if(rtnmsg.respCode == SUCCESS)
    //     {
    //       this.updateModel(rtnmsg.data)
    //       //TODO 处理数据逻辑
    //       if(this.isInDisplay){
    //         this.restoreDisplay();
    //       }

    //     }
    //     else
    //     {
    //       this.$notify.error({title: '错误',message: '服务请求失败!'});
    //     }
  }
};
</script>
<style>
</style>