Commit 40dbc8d3 by chengzhuoshen

外币兑换平盘登记fxtfop前端初始页面

parent 501a25c9
...@@ -13,7 +13,7 @@ const BusRouter = [ ...@@ -13,7 +13,7 @@ const BusRouter = [
// { path: 'fxteqo', component: ()=>import("./Fxteqo/views"), name: 'Fxteqo', meta: { title: 'Fxteqo' } ,module:'Funds'}, // { path: 'fxteqo', component: ()=>import("./Fxteqo/views"), name: 'Fxteqo', meta: { title: 'Fxteqo' } ,module:'Funds'},
// { path: 'fxtfcm', component: ()=>import("./Fxtfcm/views"), name: 'Fxtfcm', meta: { title: 'Fxtfcm' } ,module:'Funds'}, // { path: 'fxtfcm', component: ()=>import("./Fxtfcm/views"), name: 'Fxtfcm', meta: { title: 'Fxtfcm' } ,module:'Funds'},
// { path: 'fxtfcn', component: ()=>import("./Fxtfcn/views"), name: 'Fxtfcn', meta: { title: 'Fxtfcn' } ,module:'Funds'}, // { path: 'fxtfcn', component: ()=>import("./Fxtfcn/views"), name: 'Fxtfcn', meta: { title: 'Fxtfcn' } ,module:'Funds'},
// { path: 'fxtfop', component: ()=>import("./Fxtfop/views"), name: 'Fxtfop', meta: { title: 'Fxtfop' } ,module:'Funds'}, { path: 'fxtfop', component: ()=>import("./Fxtfop/views"), name: 'fxtfop', meta: { title: '外币兑换平盘登记' } ,module:'Funds'},
// { path: 'fxtlcm', component: ()=>import("./Fxtlcm/views"), name: 'Fxtlcm', meta: { title: 'Fxtlcm' } ,module:'Funds'}, // { path: 'fxtlcm', component: ()=>import("./Fxtlcm/views"), name: 'Fxtlcm', meta: { title: 'Fxtlcm' } ,module:'Funds'},
// { path: 'fxtlcn', component: ()=>import("./Fxtlcn/views"), name: 'Fxtlcn', meta: { title: 'Fxtlcn' } ,module:'Funds'}, // { path: 'fxtlcn', component: ()=>import("./Fxtlcn/views"), name: 'Fxtlcn', meta: { title: 'Fxtlcn' } ,module:'Funds'},
// { path: 'fxtlop', component: ()=>import("./Fxtlop/views"), name: 'Fxtlop', meta: { title: 'Fxtlop' } ,module:'Funds'}, // { path: 'fxtlop', component: ()=>import("./Fxtlop/views"), name: 'Fxtlop', meta: { title: 'Fxtlop' } ,module:'Funds'},
......
import Utils from "~/utils";
export default {
methods: {
buildPtspta(ptsptaObj) {
let pts = ptsptaObj.pts;
return {
rol: pts.rol,
name: pts.nam,
ptyinr: pts.ptyinr,
ptainr: pts.ptainr,
extkey: pts.extkey,
dftdsp: pts.dftdsp,
dftcur: pts.dftcur,
dftact: pts.dftact,
dftfeecur: pts.dftfeecur,
dftactptainr: pts.dftactptainr,
glggrpflg: pts.glggrpflg,
adrblk: pts.adrblk,
pts,
};
},
buildCommonData(model, trnName) {
let ptsptaList = Utils.formatPtspta(model.fxdgrp, this.buildPtspta);
return {
rec: {
objtyp: "FXD",
objinr: model.fxdgrp.rec.inr,
ownref: model.fxdgrp.rec.ownref,
},
cbsMap: {
MAX: model.fxdgrp.cbs.max,
NOM1: model.fxdgrp.cbs.nom1,
},
ptsList: ptsptaList,
transName: trnName,
userId: window.sessionStorage.userId ? window.sessionStorage.userId : "ZL",
};
},
},
};
import commonFunctions from '~/mixin/commonFunctions.js';
import Api from '~/service/Api';
export default {
mixins: [commonFunctions],
methods: {
async getOwnref(){
}
}
}
\ No newline at end of file
import Utils from "~/utils"
/**
* Fxtfop Check规则
*/
let checkObj = {
"fxdgrp.apl.pts.adrblk" :null,
"fxdgrp.rec.rat" :null,
"fxtp.usr.extkey" :null,
"fxdgrp.cbs.max.cur" :null,
"fxdgrp.rec.opndat" :null,
"fxtp.cnychk" :null,
"fxdgrp.rec.valdat" :null,
"fxdgrp.apl.pts.extkey" :null,
}
for (const key in checkObj) {
if (Object.hasOwnProperty.call(checkObj, key)) {
checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
}
}
export default checkObj
/**
* Fxtfop Default规则
*/
import Api from "~/service/Api";
import Utils from "~/utils/index"
export default {
"fxtp.cnychk" :Utils.defaultFunction,
"fxtp.frgchk" :Utils.defaultFunction,
"fxdgrp.apl.dbfadrblkcn" :Utils.defaultFunction,
"fxdgrp.cbs.nom1.cur" :Utils.defaultFunction,
"fxdgrp.cbs.max.cur" :Utils.defaultFunction,
"fxdgrp.rec.fxtyp" :Utils.defaultFunction,
"fxtp.usr.extkey" :Utils.defaultFunction,
"fxdgrp.rec.rat" :Utils.defaultFunction,
"fxdgrp.cbs.nom1.amt" :Utils.defaultFunction,
"fxdgrp.cbs.max.amt" :Utils.defaultFunction,
"fxdgrp.apl.pts.adrblk" :Utils.defaultFunction,
"fxdgrp.apl.pts.extkey" :Utils.defaultFunction,
"fxdgrp.rec.ownref" :Utils.defaultFunction,
"fxdgrp.rec.opndat" :Utils.defaultFunction,
}
//你可以添加自动default处理
import Api from "~/service/Api"
import Utils from "~/utils"
export default {
async onFxtpButgetref(){
let rtnmsg = await this.executeRule("fxtp.butgetref")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
async onAplpDet(){
let rtnmsg = await this.executeRule("aplp.det")
if(rtnmsg.respCode == SUCCESS)
{
//TODO 处理数据逻辑
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
},
}
\ No newline at end of file
export default {
"fxdgrp.rec.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"fxdgrp.rec.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"fxdgrp.apl.pts.ref":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"fxtp.usr.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 8,message:"长度不能超过8"}
],
"fxtp.usrget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"fxtp.aplp.ptsget.sdamod.dadsnd":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"fxdgrp.apl.pts.extkey":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"fxtp.aplp.ptsget.sdamod.seainf":[
{type: "string", required: false, message: "必输项"},
{max: 3,message:"长度不能超过3"}
],
"fxdgrp.apl.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"fxdgrp.apl.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"fxdgrp.cbs.max.amt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"fxdgrp.cbs.nom1.amt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"fxdgrp.rec.rat":[
{type: "string", required: false, message: "必输项"},
{max: 12,message:"长度不能超过12"}
],
"fxdgrp.rec.midrat":[
{type: "string", required: false, message: "必输项"},
{max: 12,message:"长度不能超过12"}
],
"fxdgrp.rec.opndat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"fxdgrp.rec.valdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"fxdgrp.blk.remark":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
}
\ No newline at end of file
import Api from "~/service/Api" import Api from "~/service/Api"
import Pts from "../Common/Pts" import Pts from "~/page/Model/Common/Pts"
import Pub from "../../../../components/business/commonModel/index.js";
export default class Fxtfop{ export default class Fxtfop{
constructor () { constructor () {
this.data = { this.data = {
fxdgrp:{ fxdgrp:{
rec:{ rec:{
ownref:"", // 业务编号 .fxdgrp.rec.ownref ownref:"", // 业务编号 .fxdgrp.rec.ownref
nam:"", // 业务名称 .fxdgrp.rec.nam nam:"", // 业务名称 .fxdgrp.rec.nam
fxtyp:"", // 平盘类型 .fxdgrp.rec.fxtyp fxtyp:"", // 平盘类型 .fxdgrp.rec.fxtyp
opndat:"", // 成交日 .fxdgrp.rec.opndat opndat:"", // 成交日 .fxdgrp.rec.opndat
valdat:"", // 起息日 .fxdgrp.rec.valdat valdat:"", // 起息日 .fxdgrp.rec.valdat
rat:"", // 平盘牌价 .fxdgrp.rec.rat rat:"", // 平盘牌价 .fxdgrp.rec.rat
midrat:"", // 中间价 .fxdgrp.rec.midrat midrat:"", // 中间价 .fxdgrp.rec.midrat
}, ownusr:"",
apl:{ },
pts:new Pts().data, apl:{
dbfadrblkcn:"", // Chinese address .fxdgrp.apl.dbfadrblkcn pts:new Pts().data,
}, },
blk:{ blk:{
remark:"", // 备注 .fxdgrp.blk.remark remark:"", // 备注 .fxdgrp.blk.remark
}, },
cbs:{ cbs:{
max:{ max:{
cur:"", // Currency .fxdgrp.cbs.max.cur cur:"", // Currency .fxdgrp.cbs.max.cur
amt:"", // Balance .fxdgrp.cbs.max.amt amt:"", // Balance .fxdgrp.cbs.max.amt
}, },
nom1:{ nom1:{
cur:"", // Currency .fxdgrp.cbs.nom1.cur cur:"", // Currency .fxdgrp.cbs.nom1.cur
amt:"", // Balance .fxdgrp.cbs.nom1.amt amt:"", // Balance .fxdgrp.cbs.nom1.amt
}, },
}, },
}, },
fxtp:{ fxtp:{
amtlab:"", // Amount Label .fxtp.amtlab
cnylab:"", // Amount LabelCNY .fxtp.cnylab },
frgchk:"", // 外币 .fxtp.frgchk setmod: new Pub().data.Setmod,
cnychk:"", // 人民币 .fxtp.cnychk docpan: new Pub().data.Docpan,
aplp:{ trndia: new Pub().data.Trndia,
ptsget:{ }
sdamod:{
seainf:"", // .fxtp.aplp.ptsget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .fxtp.aplp.ptsget.sdamod.dadsnd
},
},
},
usrget:{
sdamod:{
seainf:"", // .fxtp.usrget.sdamod.seainf
},
},
usr:{
extkey:"", // 业务负责人 .fxtp.usr.extkey
},
},
pageId: "" // ctx的key
}
} }
} }
\ No newline at end of file
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<!-- S0000002 : 业务编号 --> <c-col :span="24">
<!-- ==================左边================ -->
<c-col :span="12"> <c-col :span="12" style="padding-right: 20px">
<c-form-item :label="$t('fxtfop.S0000002')" prop="fxdgrp.rec.ownref"> <c-col :span="24">
<c-input v-model="model.fxdgrp.rec.ownref" maxlength="16" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000002')"></c-input> <c-form-item label="业务编号" prop="fxdgrp.rec.ownref">
</c-form-item> <c-fullbox>
</c-col> <c-input v-model="model.fxdgrp.rec.ownref" maxlength="16" placeholder="请输入业务编号" disabled>
</c-input>
<c-col :span="12"> <template slot="footer">
<c-button size="small" type="primary" @click="onFxtpButgetref"> <c-button style="margin: 0 0" size="small" type="primary" :disabled="model.fxdgrp.apl.pts.ptainr === ''"
{{$t('fxtfop.C0000015')}} @click="getOwnref">
</c-button> 获取
</c-col> </c-button>
<!-- S0000003 : 业务名称 --> </template>
</c-fullbox>
<c-col :span="12"> </c-form-item>
<c-form-item :label="$t('fxtfop.S0000003')" prop="fxdgrp.rec.nam"> </c-col>
<c-input v-model="model.fxdgrp.rec.nam" maxlength="40" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000003')"></c-input> <c-col :span="24">
</c-form-item> <c-form-item label="业务负责人" prop="fxdgrp.rec.ownusr">
</c-col> <c-input v-model="model.fxdgrp.rec.ownusr" placeholder="请输入业务负责人" disabled/>
<!-- S0000006 : 平盘对手 编号 --> </c-form-item>
</c-col>
<c-col :span="12"> <c-col :span="24">
<c-form-item :label="$t('fxtfop.S0000006')" prop="fxdgrp.apl.pts.ref"> <el-form-item label="平盘类型" prop="fxdgrp.rec.fxtyp">
<c-input v-model="model.fxdgrp.apl.pts.ref" maxlength="20" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000006')"></c-input> <c-select v-model="model.fxdgrp.rec.fxtyp" style="width:100%" :placeholder="请输入平盘类型" dbCode="">
</c-form-item> </c-select>
</c-col> </el-form-item>
<!-- S0000004 : 业务负责人 --> </c-col>
<c-col :span="24">
<c-col :span="12"> <c-col :span="12">
<c-form-item :label="$t('fxtfop.S0000004')" prop="fxtp.usr.extkey"> <el-form-item label="卖出金额" prop="fxdgrp.cbs.max.cur">
<c-input v-model="model.fxtp.usr.extkey" maxlength="8" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000004')"></c-input> <c-select-cur v-model="model.fxdgrp.cbs.max.cur" style="width: 100%" dbCode="curtxt"> </c-select-cur>
</c-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="12">
<c-col :span="12"> <el-form-item label-width="5px" prop="fxdgrp.cbs.max.amt">
<c-form-item label="" prop="fxtp.usrget.sdamod.seainf"> <c-input-currency
<c-input v-model="model.fxtp.usrget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input> :currency="model.fxdgrp.cbs.max.cur"
</c-form-item> v-model="model.fxdgrp.cbs.max.amt"></c-input-currency>
</c-col> </el-form-item>
</c-col>
<c-col :span="12"> </c-col>
<c-form-item label="Drag Drop Sender" prop="fxtp.aplp.ptsget.sdamod.dadsnd"> <c-col :span="24">
<c-input v-model="model.fxtp.aplp.ptsget.sdamod.dadsnd" :placeholder="$t('other.please_enter')+'Drag Drop Sender'"></c-input> <c-col :span="12">
</c-form-item> <el-form-item label="买入金额" prop="fxdgrp.cbs.nom1.cur">
</c-col> <c-select-cur v-model="model.fxdgrp.cbs.nom1.cur" style="width: 100%" dbCode="curtxt"> </c-select-cur>
</el-form-item>
<c-col :span="12"> </c-col>
<c-form-item label="External Key of Address" prop="fxdgrp.apl.pts.extkey"> <c-col :span="12">
<c-input v-model="model.fxdgrp.apl.pts.extkey" maxlength="16" :placeholder="$t('other.please_enter')+'External Key of Address'"></c-input> <el-form-item label-width="5px" prop="fxdgrp.cbs.nom1.amt">
</c-form-item> <c-input-currency
</c-col> disabled
:currency="model.fxdgrp.cbs.nom1.cur"
<c-col :span="12"> v-model="model.fxdgrp.cbs.nom1.amt"></c-input-currency>
<c-form-item label="" prop="fxtp.aplp.ptsget.sdamod.seainf"> </el-form-item>
<c-input v-model="model.fxtp.aplp.ptsget.sdamod.seainf" :placeholder="$t('other.please_enter')+''"></c-input> </c-col>
</c-form-item> </c-col>
</c-col> <c-col :span="24">
<c-form-item label="平盘牌价" prop="fxdgrp.rec.rat">
<c-col :span="12"> <c-input-currency v-model="model.fxdgrp.rec.rat" style="width:100%" :precision="6" disabled placeholder="请输入平盘牌价">
<c-button size="small" type="primary" @click="onAplpDet"> </c-input-currency>
{{$t('ptsp.CF000081')}} </c-form-item>
</c-button> </c-col>
</c-col> <c-col :span="24">
<!-- S0000005 : 平盘类型 --> <c-form-item label="中间价" prop="fxdgrp.rec.midrat">
<c-input-currency v-model="model.fxdgrp.rec.midrat" style="width:100%" :precision="6" disabled placeholder="请输入中间价">
<c-col :span="12"> </c-input-currency>
<el-form-item :label="$t('fxtfop.S0000005')" prop="fxdgrp.rec.fxtyp"> </c-form-item>
<c-select v-model="model.fxdgrp.rec.fxtyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000005')"> </c-col>
</c-select> <c-col :span="24">
</el-form-item> <c-form-item label="备注" prop="fxdgrp.blk.remark">
</c-col> <c-input type="textarea" v-model="model.fxdgrp.blk.remark" maxlength="140" :rows="4" style="width:100%" placeholder="请输入备注">
</c-input>
<c-col :span="12"> </c-form-item>
<c-form-item label="Address Block" prop="fxdgrp.apl.pts.adrblk"> </c-col>
<c-input type="textarea" v-model="model.fxdgrp.apl.pts.adrblk" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Address Block'" ></c-input>
</c-form-item>
</c-col> </c-col>
<!-- ==================右边================ -->
<c-col :span="12"> <c-col :span="12" style="padding-right: 20px">
<c-form-item label="Chinese address" prop="fxdgrp.apl.dbfadrblkcn"> <c-col :span="24">
<c-input type="textarea" v-model="model.fxdgrp.apl.dbfadrblkcn" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+'Chinese address'" ></c-input> <el-card class="box-card">
</c-form-item> <c-ptap :model="model" :requiredExtkey="true" :disabledExtkey="false" :disabled="false" :isAdrblk="true" :haveAdrLabel="true"
</c-col> :isShowCard="false" :argadr="{title: '平盘对手',grp: 'fxdgrp', rol: 'apl',}"
:label="{labelExtkey:'平盘对手',labelNam:'名称',labelAdrblk:'地址'}" ptytyp="C">
<c-col :span="12"> </c-ptap>
<span v-text="model.fxtp.amtlab" data-path=".fxtp.amtlab" > </span> </el-card>
</c-col> </c-col>
<c-col :span="24">
<c-col :span="12"> <el-form-item label="成交日" prop="fxdgrp.rec.opndat">
<el-form-item label="Currency" prop="fxdgrp.cbs.max.cur"> <c-date-picker type="date" v-model="model.fxdgrp.rec.opndat" style="width:100%" placeholder="请输入成交日">
<c-select v-model="model.fxdgrp.cbs.max.cur" style="width:100%" :placeholder="$t('other.please_enter')+'Currency'"> </c-date-picker>
</c-select> </el-form-item>
</el-form-item> </c-col>
</c-col> <c-col :span="24">
<el-form-item label="起息日" prop="fxdgrp.rec.valdat">
<c-col :span="12"> <c-date-picker type="date" v-model="model.fxdgrp.rec.valdat" style="width:100%" placeholder="请输入起息日">
<c-form-item label="Balance" prop="fxdgrp.cbs.max.amt"> </c-date-picker>
<c-input v-model="model.fxdgrp.cbs.max.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input> </el-form-item>
</c-form-item> </c-col>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.fxtp.frgchk">{{$t('fxtp.C0000100')}}</c-checkbox>
</c-col>
<c-col :span="12">
<span v-text="model.fxtp.cnylab" data-path=".fxtp.cnylab" > </span>
</c-col>
<c-col :span="12">
<el-form-item label="Currency" prop="fxdgrp.cbs.nom1.cur">
<c-select v-model="model.fxdgrp.cbs.nom1.cur" style="width:100%" :placeholder="$t('other.please_enter')+'Currency'">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<c-form-item label="Balance" prop="fxdgrp.cbs.nom1.amt">
<c-input v-model="model.fxdgrp.cbs.nom1.amt" :placeholder="$t('other.please_enter')+'Balance'"></c-input>
</c-form-item>
</c-col>
<c-col :span="12">
<c-checkbox v-model="model.fxtp.cnychk">{{$t('fxtp.C0000101')}}</c-checkbox>
</c-col>
<!-- S0000013 : 平盘牌价 -->
<c-col :span="12">
<c-form-item :label="$t('fxtfop.S0000013')" prop="fxdgrp.rec.rat">
<c-input v-model="model.fxdgrp.rec.rat" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000013')"></c-input>
</c-form-item>
</c-col>
<!-- S0000014 : 中间价 -->
<c-col :span="12">
<c-form-item :label="$t('fxtfop.S0000014')" prop="fxdgrp.rec.midrat">
<c-input v-model="model.fxdgrp.rec.midrat" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000014')"></c-input>
</c-form-item>
</c-col>
<!-- S0000007 : 成交日 -->
<c-col :span="12">
<el-form-item :label="$t('fxtfop.S0000007')" prop="fxdgrp.rec.opndat">
<c-date-picker type="date" v-model="model.fxdgrp.rec.opndat" style="width:100%" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000007')"></c-date-picker>
</el-form-item>
</c-col>
<!-- S0000008 : 起息日 -->
<c-col :span="12">
<el-form-item :label="$t('fxtfop.S0000008')" prop="fxdgrp.rec.valdat">
<c-date-picker type="date" v-model="model.fxdgrp.rec.valdat" style="width:100%" :placeholder="$t('other.please_enter')+$t('fxtfop.S0000008')"></c-date-picker>
</el-form-item>
</c-col>
<!-- S0000009 : 备注 -->
<c-col :span="12">
<c-form-item :label="$t('fxtfop.S0000009')" prop="fxdgrp.blk.remark">
<c-input type="textarea" v-model="model.fxdgrp.blk.remark" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('fxtfop.S0000009')" ></c-input>
</c-form-item>
</c-col> </c-col>
</c-col>
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import event from "../event";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "../model/Event"
export default { export default {
inject: ['root'], inject: ['root'],
props:["model","codes"], props:["model","codes"],
mixins: [commonProcess], mixins: [event],
data(){ data(){
return { return {}
}
}, },
methods:{...Event}, created() {}
created:function(){
}
} }
</script> </script>
<style> <style>
......
<template> <template>
<div class="eContainer"> <div class="eContainer">
<c-page title="外币兑换平盘登记">
<el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right" size="small" :validate-on-rule-change="false"> <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"> <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick">
<!--fxtfop PD000001 Registration --> <!--fxtfop PD000001 Registration -->
<el-tab-pane :label="$t('fxtfop.PD000001')" name="regp"> <el-tab-pane label="Registration" name="regp">
<m-regp :model="model" :codes="codes"/> <m-regp :model="model" :codes="codes"/>
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="费用/账务" name="setpan">
<c-content>
<m-setpan :codes="codes" :model="model" />
</c-content>
</el-tab-pane>
<el-tab-pane label="报文/面函" name="docpan">
<c-content>
<m-docpan :codes="codes" :model="model" />
</c-content>
</el-tab-pane>
</c-tabs> </c-tabs>
</el-form> </el-form>
<c-function-btn
:handleCheck="handleCheck"
:handleStash="handleStash"
:handleSubmit="handleSubmit"
@handleSureWarning="handleSureWarning"
ref="commonBtn"></c-function-btn>
</c-page>
</div> </div>
</template> </template>
<script> <script>
...@@ -15,59 +33,52 @@ import Api from "~/service/Api" ...@@ -15,59 +33,52 @@ import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable"
import Fxtfop from "../model" import Fxtfop from "../model"
import commonProcess from "~/mixin/commonProcess" import commonProcess from "~/mixin/commonProcess"
import Check from "../model/Check"
import Default from "../model/Default"
import Pattern from "../model/Pattern"
import Regp from "./Regp" import Regp from "./Regp"
import Setpan from "~/components/business/setmod/views";
import Docpan from "~/components/business/docpan/views";
import operationFunc from "~/mixin/operationFunc";
import commonDepend from "~/mixin/commonDepend";
import event from "../event";
import buildFn from "../event/buildCommons.js";
export default { export default {
name: "Fxtfop", name: "Fxtfop",
components:{ components:{
"m-regp" : Regp, "m-regp" : Regp,
"m-setpan": Setpan,
"m-docpan": Docpan,
}, },
provide() { provide() {
return { return {
root: this root: this
} }
}, },
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理 mixins: [commonProcess,operationFunc,commonDepend,event,buildFn],
data(){ data(){
return { return {
tabVal: "", tabVal: "regp",
trnName: "fxtfop", trnName: "fxtfop",
trnType: "",
model: new Fxtfop().data, model: new Fxtfop().data,
checkRules: Check, codes: { ...CodeTable },
defaultRules: Default, rules: {},
pattern: Pattern,
rules: null,
codes: {
},
} }
}, },
methods:{ methods:{
myTabClick(tab){
this.tabClick(tab)
/**
* do it yourself
**/
}
}, },
created:async function(){ mounted() {
console.log("进入fxtfop交易"); console.log("进入fxtfop交易");
let rtnmsg = await this.init({}) let params = {
if(rtnmsg.respCode == SUCCESS) transName: this.trnName,
{ fxdgrp: {
this.updateModel(rtnmsg.data) rec: {
//TODO 处理数据逻辑 inr: this.$route.query.inr || "",
},
} },
else };
{ this.init(params)
this.$notify.error({title: '错误',message: '服务请求失败!'}); },
}
}
} }
</script> </script>
<style> <style>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment