<template> <div class="eContainer" style="height:90%"> <div style="padding:0 15px"> <el-form :model="model" :rules="rules" ref="modelForm" label-width="120px" label-position="right" size="small" :validate-on-rule-change="false"> <!--PD000006 --> <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick"> <el-tab-pane label="买方信用证交易查询" name="infsea"> <c-content> <m-infsea :model="model" :codes="codes"/> </c-content> </el-tab-pane> </c-tabs> </el-form> </div> </div> </template> <script> import Utils from "~/utils/index"; import Api from "~/service/Api" import CodeTable from "~/config/CodeTable" import Infdid from "~/model/Infdid" import commonProcess from "~/mixin/commonProcess" import Check from "~/model/Infdid/Check" import Default from "~/model/Infdid/Default" import Pattern from "~/model/Infdid/Pattern" import Infsea from "./Infsea" export default { name: "Infdid", components:{ "m-infsea" : Infsea, }, provide() { return { root: this } }, mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 data(){ return { tabVal: "infsea", trnName: "infdid", model: new Infdid().data, checkRules: Check, defaultRules: Default, pattern: Pattern, // showPanel:false, rules: null, codes: { ...CodeTable }, } }, methods:{ tabClick(){ }, // tabClick(tab) { // const name = tab.name // let rulePath; // if (name === "fepinfp") { // rulePath = "infcon.fepinfp"; // } // if (name === "coninfp") { // rulePath = "coninf.coninfp"; // } // if (!!rulePath) { // this.executeRule(rulePath).then(res => { // if (res.respCode == SUCCESS) { // this.updateModel(res.data); // } // }) // } // }, // initPanel(val){ // if(val){ // this.tabVal = "ovwp" // // // }else{ // this.tabVal = "" // } // }, // async updateShowPanel(value) { // this.showPanel = value; // this.initPanel(value); // }, // goBack(){ // this.showPanel = false; // }, }, created:async function(){ console.log("进入infdid交易"); let rtnmsg = await this.init({}) if(rtnmsg.respCode == SUCCESS) { //更新数据 this.updateModel(rtnmsg.data) // Utils.copyValueFromVO(this.model, rtnmsg.data); // this.$refs.infsea.handleSearch(); } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, watch:{ } } </script> <style scoped> /* .eContainer { padding: 3px 15px; } */ </style>