<template> <div class="eContainer"> <c-page> <!-- <c-bus-button :$pntvm="this"></c-bus-button> j加操作按钮--> <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="myTabClick"> <!--brtdck PD000046 Documents Received 标签页--> <el-tab-pane label="收单信息" name="brtdckp"> <!--在页面上添加滚动条,使用 c-content 组件,有个height属性,默认是250,height:指的是页面document的高度与自身dom元素高度的差值。--> <c-content> <m-brtdckp :model="model" :codes="codes" /> </c-content> </el-tab-pane> <!--brtp PD000062 Discr./Instr. --> <el-tab-pane label="不符点指示" name="docpre" v-if="model.brdgrp.rec.dscinsflg" > <c-content> <m-docpre :model="model" :codes="codes" /> </c-content> </el-tab-pane> <!--brtp PD000079 Shipping Details --> <el-tab-pane label="装运详情" name="shpdet" v-if="model.brdgrp.rec.dscinsflg" > <c-content> <m-shpdet :model="model" :codes="codes" /> </c-content> </el-tab-pane> <el-tab-pane label="费用/账务" name="engp,setpan"> <c-content> <el-collapse v-model="fyzw"> <el-collapse-item title="表外记账" name="engp"> <!--liaall PD000027 Liability --> <m-engp :model="model" :codes="codes" /> </el-collapse-item> <el-collapse-item title="结算" name="setpan"> <!--setmod PD000000 Settlement --> <!-- 结算 --> <m-setpan :model="model" :codes="codes" /> </el-collapse-item> </el-collapse> </c-content> </el-tab-pane> <!--coninf PD000000 Completion --> <el-tab-pane label="提示信息" name="coninfp"> <c-content> <m-coninfp :model="model" :codes="codes" /> </c-content> </el-tab-pane> <!--trndoc PD000529 &Messages --> <el-tab-pane label="报文/面函" name="docpan"> <m-docpan :model="model" :codes="codes" /> </el-tab-pane> <!--trndoc PD000546 Attachments --> <el-tab-pane label="附件信息" name="doctre"> <c-content> <m-doctre :model="model" :codes="codes" /> </c-content> </el-tab-pane> <!--limmod PD000001 统一授信 --> <el-tab-pane label="统一授信" name="limitbody"> <c-content> <m-limitbody :model="model" :codes="codes" /> </c-content> </el-tab-pane> </c-tabs> </el-form> <c-function-btn :handleSubmit="handleSubmit" :handleCheck="handleCheck" :handleStash="handleStash" > <!-- <el-button size="small">查询</el-button> --> <!-- <el-button size="small">用户确认</el-button> --> <!-- <el-button size="small">检核</el-button> --> <!-- <el-button size="small">日志</el-button> --> <!-- <el-button size="small">保存模板</el-button> --> <!-- <el-button size="small">使用模板</el-button> --> <!-- <el-button size="small">imgyge</el-button> --> <!-- <el-button size="small">拆分报文</el-button> --> <!-- <el-button size="small">img</el-button> --> <!-- <el-button size="small">His.img</el-button> --> </c-function-btn> <c-grid-ety-prompt-dialog ref="etyDialog" :promptData="promptData" v-on:select-ety="selectEty" > </c-grid-ety-prompt-dialog> <c-grid-ety-prompt-dialog ref="doxpDialog" :isPty="false" :promptData="promptData" @select-ety="selectMsg" > </c-grid-ety-prompt-dialog> </c-page> </div> </template> <script> import Api from '~/service/Api' import CodeTable from '~/config/CodeTable' import Brtdck from '~/model/Brtdck' import commonProcess from '~/mixin/commonProcess' import commonFuncs from '~/mixin/commonFuncs' import Check from '~/model/Brtdck/Check' import Default from '~/model/Brtdck/Default' import Pattern from '~/model/Brtdck/Pattern' import Brtdckp from './Brtdckp' import Docpre from './Docpre' import Shpdet from './Shpdet' // import Engp from "./Engp" // import Setpan from "./Setpan" // import Coninfp from "./Coninfp" // import Docpan from "./Docpan" // import Doctre from "./Doctre" import Limitbody from "./Limitbody" import Engp from '~/views/Public/Engp' import Setpan from '~/views/Public/Setpan' import Coninfp from '~/views/Public/Coninfp' import Docpan from '~/views/Public/Docpan' import Doctre from '~/views/Public/Doctre' // import Limitbody from '~/views/Public/Limitbody' export default { name: 'Brtdck', components: { 'm-brtdckp': Brtdckp, 'm-docpre': Docpre, 'm-shpdet': Shpdet, 'm-engp': Engp, 'm-setpan': Setpan, 'm-coninfp': Coninfp, 'm-docpan': Docpan, 'm-doctre': Doctre, 'm-limitbody': Limitbody, }, provide() { return { root: this, } }, mixins: [commonProcess, commonFuncs], // 里面包含了Default、Check等的公共处理 data() { return { tabVal: 'brtdckp', trnName: 'brtdck', trnType: '', model: new Brtdck().data, checkRules: Check, defaultRules: Default, pattern: Pattern, rules: null, codes: { ...CodeTable, }, } }, methods: { myTabClick(tab) { this.tabClick(tab) /** * do it yourself **/ }, }, created: async function () { console.log('进入brtdck交易') 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>