<template>
	<div class="eContainer">
		<c-page title="卖方信用证单据发票修改">
			<el-form :model="model" :rules="getRules" 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="handlepan" v-if="model.imgInvmod.invrep.invfunc=='X'">
            <c-content>
							<m-handlepan :model="model" :codes="codes" />
            </c-content>
          </el-tab-pane>

        <el-tab-pane label="发票核验" name="invchkpan">
            <c-content>
              <m-invchkpan :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 Bftinv from "../model";
import operationFunc from "~/mixin/operationFunc";
import commonDepend from "~/mixin/commonDepend";
import Check from "../model/check";
import Default from "../model/default";
import event from "../event";
import buildFn from "../event/buildCommons.js";

import Ovwp from "./Ovwp";
import Invchkpan from "~/components/business/Invchkpan/views";
import Handlepan from "./Handlepan";

export default {
  name: "Bftinv",
  components: {
    "m-ovwp": Ovwp,
		"m-invchkpan": Invchkpan,
		"m-handlepan": Handlepan,
  },
  provide() {
    return {
      root: this
    };
  },
  mixins: [Default, event, buildFn, operationFunc, commonDepend],
  data() {
    return {
      tabVal: "ovwp",
      trnName: "bftinv",
      trnType: "",
      model: new Bftinv().data,
      codes: {
        ...CodeTable
			},
      lang:'CN',
      rules: {}
    };
  },
	methods: {},
  computed: {
  getRules() {
    return {...this.rules, ...Check.apply(this)};
  },
},
  created() {
    console.log("进入bftinv交易");
    let params = {
      transName: this.trnName,
      bfdgrp: {
        rec: {
          inr: this.$route.query.inr
        }
      }
    };
		this.init(params);
  }
};
</script>
<style>
</style>