<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 Nitadd 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: "Nitadd", components: { "m-ovwp": Ovwp, }, provide() { return { root: this, activeNames: ["ovwp"] }; }, mixins: [operationFunc, event, Check, commonDepend, buildFn], data() { return { tabVal: "ovwp", trnName: "nitadd", model: new Nitadd().data, codes: { ...CodeTable }, atxinrList: [{ value: "<NILTXT>", label: "空白文本" }], lang: "CN" }; }, mounted() { console.log("进入nitadd交易"); let params = { transName: this.trnName, nidgrp: { rec: { inr: this.$route.query.inr || "" } } }; this.init(params); }, methods: {} }; </script> <style> </style>