<template> <div class="eContainer"> <el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right" size="small" :validate-on-rule-change="false"> <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick"> <!--oftp PD000058 人工勾销修改页面oftame --> <el-tab-pane :label="$t('oftp.PD000058')" name="oftp2"> <m-oftp2 :model="model" :codes="codes"/> </el-tab-pane> </c-tabs> </el-form> </div> </template> <script> import Api from "~/service/Api" import CodeTable from "~/config/CodeTable" import Oftame from "../model" import commonProcess from "~/mixin/commonProcess" import Check from "../model/Check" import Default from "../model/Default" import Pattern from "../model/Pattern" import Oftp2 from "./Oftp2" export default { name: "Oftame", components:{ "m-oftp2" : Oftp2, }, provide() { return { root: this } }, mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 data(){ return { tabVal: "oftp2", trnName: "oftame", trnType: "", model: new Oftame().data, checkRules: Check, defaultRules: Default, pattern: Pattern, rules: null, codes: { kpatyp:CodeTable.kpatyp, cur:CodeTable.cur, sdcflg:CodeTable.sdcflg, gpicod:CodeTable.gpicod, offtyp:CodeTable.offtyp, fmssta:CodeTable.fmssta, clrsys:CodeTable.clrsys, stacod:CodeTable.stacod, recsta:CodeTable.recsta, bnksta:CodeTable.bnksta, gpista:CodeTable.gpista, kpadir:CodeTable.kpadir, area:CodeTable.area, cpsfxdtyp:CodeTable.cpsfxdtyp, rspsta:CodeTable.rspsta, sta:CodeTable.sta, actsta:CodeTable.actsta, offsta:CodeTable.offsta, batcharge:CodeTable.batcharge, msgmst:CodeTable.msgmst, yosflg:CodeTable.yosflg, filtyp:CodeTable.filtyp, dircod:CodeTable.dircod, kpstyp:CodeTable.kpstyp, dcflg:CodeTable.dcflg, msgtyp:CodeTable.msgtyp, chncod:CodeTable.chncod, msgsta:CodeTable.msgsta, usratr:CodeTable.usratr, msgchksta:CodeTable.msgchksta, setmth:CodeTable.setmth, chniptcod:CodeTable.chniptcod, dtlchg:CodeTable.dtlchg, }, } }, methods:{ myTabClick(tab){ this.tabClick(tab) /** * do it yourself **/ } }, created:async function(){ console.log("进入oftame交易"); let rtnmsg = {}; // await this.init({}) if(rtnmsg.respCode == SUCCESS) { this.updateModel(rtnmsg.data) //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } } } </script> <style> </style>