<template> <c-page title="出口托收二次寄单"> <div class="eContainer"> <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> <!--PD000027 --> <el-tab-pane label="表外记账" name="engp"> <c-content> <!-- 表外记账 --> <m-engp :model="model" :codes="codes" /> </c-content> </el-tab-pane> <!--PD000027 --> <el-tab-pane label="费用/账务" name="setmod"> <c-content> <m-setmod :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> <el-tab-pane label="报文/面函" name="docpan"> <c-content> <m-docpan :model="model" :codes="codes" /> </c-content> </el-tab-pane> <el-tab-pane label="附件信息" name="doctre"> <c-content> <m-doctre :model="model" :codes="codes" /> </c-content> </el-tab-pane> </c-tabs> </el-form> <c-function-btn :handleSubmit="handleSubmit" :handleCheck="handleCheck" :handleStash="handleStash" > </c-function-btn> </div> </c-page> </template> <script> import Api from "~/service/Api" import CodeTable from "~/config/CodeTable" import formRules from '../model/check' import Botrad from "../model" import Botrad1 from "./Botrad" import Ptyp from "./Ptyp" import Addbcb from "./Addbcb"; import Ovwp from "./Ovwp" import Engp from "~/components/business/engp/views" import Setmod from "~/components/business/setmod/views" import Coninfp from "~/components/business/coninfp/views" import Docpan from "~/components/business/docpan/views" import Doctre from "~/components/business/doctre/views" import Glepan from "~/components/business/glentry/views"; import event from "../event"; import operationFunc from "@/mixin/operationFunc"; export default { name: "Botrad", components: { "m-addbcb": Addbcb, "m-ovwp": Ovwp, "m-botrad1": Botrad1, "m-ptyp": Ptyp, "m-setmod": Setmod, "m-coninfp": Coninfp, "m-engp": Engp, "m-docpan": Docpan, "m-doctre": Doctre, "m-glepan":Glepan, }, provide() { return { root: this } }, mixins: [operationFunc, event], // 里面包含了Default、Check等的公共处理 data() { return { tabVal: "ovwp", trnName: "botrad", model: new Botrad().data, rules: formRules, codes: { ...CodeTable }, activeNames: ["engp"], } }, mounted() { this.init() }, methods: { // myTabClick(tab) { // this.tabClick(tab) // /** // * do it yourself // **/ // } }, created: async function () { // console.log("进入botrad交易"); // let rtnmsg = await this.init({}) // if (rtnmsg.respCode == SUCCESS) { // this.updateModel(rtnmsg.data) // //TODO 处理数据逻辑 // if (this.isInDisplay) { // this.restoreDisplay(); // } // } // else { // this.$notify.error({ title: '错误', message: '服务请求失败!' }); // } } } </script> <style> </style>