Commit 669fd09b by huangshunlin

即期结售汇前端调整,增加结售汇申报组件

parent d0b167ad
......@@ -24,6 +24,7 @@ export default class Fxdgrp {
dsp: "", // 外币结算账号 fxdgrp.rec.dsp
dsp2: "", // 本币结算账号 fxdgrp.rec.dsp2
usr: "", // 业务经办人 fxdgrp.rec.usr
ownusr: "", // Clearing Department Responsible User fxdgrp.rec.ownusr
},
blk: {
remark: "", // 备注 fxdgrp.blk.remark
......@@ -31,19 +32,19 @@ export default class Fxdgrp {
cbs: {
max: {
cur: "", // Currency fxdgrp.cbs.max.cur
amt: 0.00, // Balance fxdgrp.cbs.max.amt
amt: "", // Balance fxdgrp.cbs.max.amt
},
nom1: {
cur: "", // Currency fxdgrp.cbs.nom1.cur
amt: 0.00, // Balance fxdgrp.cbs.nom1.amt
amt: "", // Balance fxdgrp.cbs.nom1.amt
},
opn1: {
cur: "", // Currency fxdgrp.cbs.nom1.cur
amt: 0.00, // Balance fxdgrp.cbs.nom1.amt
amt: "", // Balance fxdgrp.cbs.nom1.amt
},
opn2: {
cur: "", // Currency fxdgrp.cbs.nom1.cur
amt: 0.00, // Balance fxdgrp.cbs.nom1.amt
amt: "", // Balance fxdgrp.cbs.nom1.amt
},
},
apl: {
......
import commonFunctions from '~/mixin/commonFunctions.js';
import Api from '~/service/Api';
import commonFunctions from "~/mixin/commonFunctions.js";
import Api from "~/service/Api";
export default {
mixins: [commonFunctions],
......@@ -7,13 +7,16 @@ export default {
async getOwnref() {
if (this.model.fxdgrp.rec.fxtyp == "") {
this.$notify.warning({
title: '提示',
message: '请先选择结售汇类型!'
title: "提示",
message: "请先选择结售汇类型!",
});
return;
}
const loading = this.loading();
let res = await Api.post(`/${this.moduleRouter()}/fxtssb/getRef`, this.model);
let res = await Api.post(
`/${this.moduleRouter()}/fxtssb/getRef`,
this.model
);
loading.close();
if (res.respCode !== SUCCESS) {
this.$message.error(res.respMsg);
......@@ -33,15 +36,18 @@ export default {
return;
}
const loading = this.loading();
let res = await Api.post(`/${this.moduleRouter()}/fxtssb/defaultAccountsN1000`, this.model);
let res = await Api.post(
`/${this.moduleRouter()}/fxtssb/defaultAccountsN1000`,
this.model
);
loading.close();
if (res.respCode !== SUCCESS) {
this.$message.error(res.respMsg);
return;
}
// this.updateValueSet(res.codeSet);
this.model.accLst = res.codeSet['accLst'];
this.model.accLst2 = res.codeSet['acc2Lst'];
this.model.accLst = res.codeSet["accLst"];
this.model.accLst2 = res.codeSet["acc2Lst"];
this.model.fxdgrp.rec.acc = res.data.fxdgrp.rec.acc;
this.model.fxdgrp.rec.acc2 = res.data.fxdgrp.rec.acc2;
},
......@@ -57,7 +63,10 @@ export default {
return;
}
const loading = this.loading();
let res = await Api.post(`/${this.moduleRouter()}/fxtssb/defaultRateN1000`, this.model);
let res = await Api.post(
`/${this.moduleRouter()}/fxtssb/defaultRateN1000`,
this.model
);
loading.close();
if (res.respCode !== SUCCESS) {
this.$message.error(res.respMsg);
......@@ -69,13 +78,12 @@ export default {
async defaultAccAndRate() {
this.defaultAccountsN1000();
this.defaultRateN1000();
console.log("defaultAccAndRate")
await this.defaultRateN1000();
this.defaultCalculateN1100();
},
async defaultCalculateN1100() {
console.log("defaultCalculateN1100")
console.log("defaultCalculateN1100");
if (this.model.fxdgrp.rec.rat == "") {
return;
......@@ -83,11 +91,17 @@ export default {
if (this.model.fxdgrp.cbs.max.cur == "") {
return;
}
if (this.model.fxdgrp.cbs.max.amt == "" || this.model.fxdgrp.cbs.max.amt == 0) {
if (
this.model.fxdgrp.cbs.max.amt == "" ||
this.model.fxdgrp.cbs.max.amt == 0
) {
return;
}
const loading = this.loading();
let res = await Api.post(`/${this.moduleRouter()}/fxtssb/defaultCalculateN1100`, this.model);
let res = await Api.post(
`/${this.moduleRouter()}/fxtssb/defaultCalculateN1100`,
this.model
);
loading.close();
if (res.respCode !== SUCCESS) {
this.$message.error(res.respMsg);
......@@ -96,5 +110,5 @@ export default {
this.model.fxdgrp.cbs.max.amt = res.data.fxdgrp.cbs.max.amt;
this.model.fxdgrp.cbs.nom1.amt = res.data.fxdgrp.cbs.nom1.amt;
},
}
}
\ No newline at end of file
},
};
export default {
import JshmodCheck from "~/components/business/jshmod/model/check";
export default function () {
return {
...new JshmodCheck(this).check,
"fxdgrp.rec.ownref": [
{type: "string", required: true, message: "必输项"},
{max: 16, message: "长度不能超过16"}
{ type: "string", required: true, message: "必输项" },
{ max: 16, message: "长度不能超过16" },
],
"fxdgrp.rec.nam": [
{type: "string", required: false, message: "必输项"},
{max: 40, message: "长度不能超过40"}
{ type: "string", required: false, message: "必输项" },
{ max: 40, message: "长度不能超过40" },
],
"fxdgrp.apl.pts.ref": [
{type: "string", required: false, message: "必输项"},
{max: 20, message: "长度不能超过20"}
{ type: "string", required: false, message: "必输项" },
{ max: 20, message: "长度不能超过20" },
],
"fxdgrp.rec.usr": [
{type: "string", required: false, message: "必输项"},
{max: 8, message: "长度不能超过8"}
{ type: "string", required: false, message: "必输项" },
{ max: 8, message: "长度不能超过8" },
],
"fxdgrp.apl.pts.extkey": [
{type: "string", required: false, message: "必输项"},
{max: 16, message: "长度不能超过16"}
{ type: "string", required: false, message: "必输项" },
{ max: 16, message: "长度不能超过16" },
],
"fxdgrp.apl.pts.adrblk": [
{type: "string", required: true, message: "必输项"},
{max: 35, message: "长度不能超过35"}
{ type: "string", required: true, message: "必输项" },
{ max: 35, message: "长度不能超过35" },
],
"fxdgrp.cbs.max.cur": [
{ type: "string", required: true, message: "必输项" },
{ max: 3, message: "3" },
],
"fxdgrp.cbs.max.amt": [
{type: "string", required: true, message: "必输项"},
{max: 18, message: "整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位"}
{ type: "string", required: true, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" },
{
pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/,
message: "小数位不能超过3位",
},
],
"fxdgrp.cbs.nom1.amt": [
{type: "string", required: false, message: "必输项"},
{max: 18, message: "整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位"}
{ type: "string", required: false, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" },
{
pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/,
message: "小数位不能超过3位",
},
],
"fxdgrp.rec.quoref": [
{type: "string", required: false, message: "必输项"},
{max: 16, message: "长度不能超过16"}
{ type: "string", required: false, message: "必输项" },
{ max: 16, message: "长度不能超过16" },
],
"fxdgrp.rec.fudref": [
{type: "string", required: false, message: "必输项"},
{max: 16, message: "长度不能超过16"}
],
"fxdgrp.rec.opndat": [
{required: true, message: "输入正确的日期"}
],
"fxdgrp.rec.valdat": [
{required: true, message: "输入正确的日期"}
],
"fxdgrp.rec.setdat": [
{required: false, message: "输入正确的日期"}
],
"fxdgrp.rec.setdatto": [
{required: false, message: "输入正确的日期"}
],
"fxdgrp.rec.setdatfrm": [
{required: false, message: "输入正确的日期"}
],
{ type: "string", required: false, message: "必输项" },
{ max: 16, message: "长度不能超过16" },
],
"fxdgrp.rec.opndat": [{ required: true, message: "输入正确的日期" }],
"fxdgrp.rec.valdat": [{ required: true, message: "输入正确的日期" }],
"fxdgrp.rec.setdat": [{ required: false, message: "输入正确的日期" }],
"fxdgrp.rec.setdatto": [{ required: false, message: "输入正确的日期" }],
"fxdgrp.rec.setdatfrm": [{ required: false, message: "输入正确的日期" }],
"fxdgrp.blk.remark": [
{type: "string", required: false, message: "必输项"},
{max: 35, message: "长度不能超过35"}
{ type: "string", required: false, message: "必输项" },
{ max: 35, message: "长度不能超过35" },
],
"fxdgrp.rec.dsp": [
{type: "string", required: true, message: "必输项"},
{max: 2, message: "长度不能超过2"}
{ type: "string", required: true, message: "必输项" },
{ max: 2, message: "长度不能超过2" },
],
"fxdgrp.rec.dsp2": [
{type: "string", required: true, message: "必输项"},
{max: 2, message: "长度不能超过2"}
{ type: "string", required: true, message: "必输项" },
{ max: 2, message: "长度不能超过2" },
],
"fxdgrp.rec.acc": [
{type: "string", required: true, message: "必输项"},
{max: 21, message: "长度不能超过21"}
{ type: "string", required: true, message: "必输项" },
{ max: 21, message: "长度不能超过21" },
],
"fxdgrp.rec.acc2": [
{type: "string", required: true, message: "必输项"},
{max: 21, message: "长度不能超过21"}
{ type: "string", required: true, message: "必输项" },
{ max: 21, message: "长度不能超过21" },
],
"fxdgrp.rec.trnman": [
{type: "string", required: true, message: "必输项"},
{max: 2, message: "长度不能超过2"}
{ type: "string", required: true, message: "必输项" },
{ max: 2, message: "长度不能超过2" },
],
"fxdgrp.rec.trdint": [
{type: "string", required: true, message: "必输项"},
{max: 3, message: "长度不能超过3"}
{ type: "string", required: true, message: "必输项" },
{ max: 3, message: "长度不能超过3" },
],
};
}
......@@ -16,6 +16,7 @@ export default class Fxtssb {
setmod: new Pub().data.Setmod,
docpan: new Pub().data.Docpan,
trndia: new Pub().data.Trndia,
jshmod: new Pub().data.Jshmod,
}
}
}
\ No newline at end of file
......@@ -250,10 +250,6 @@
:filterKey="['110','121','122','123','124','125','126','12X','131','132','210','220','221','222','223','231','232','240','241','242','250','260','261','262','270']">
</c-select>
</el-form-item>
<el-form-item prop="fxdgrp.rec.trdout" style="display:none">
<c-select v-model="model.fxdgrp.rec.trdout" style="width:100%">
</c-select>
</el-form-item>
</c-col>
</c-col>
</c-col>
......@@ -279,9 +275,11 @@
return flg;
},
defaultNam950: function () {
let amount = this.moneyFormat(this.model.fxdgrp.cbs.max.amt, this.model.fxdgrp.cbs.max.cur)
return this.getCodelabel(this.model.fxdgrp.rec.fxtyp, "fxt_fxtyp") + ","
+ this.model.fxdgrp.cbs.max.cur + " " + amount;
let amount = this.moneyFormat(this.model.fxdgrp.cbs.max.amt, this.model.fxdgrp.cbs.max.cur);
let nam = this.getCodelabel(this.model.fxdgrp.rec.fxtyp, "fxt_fxtyp") + ","
+ this.model.fxdgrp.cbs.max.cur + " " + amount
this.model.fxdgrp.rec.nam = nam;
return nam;
},
},
methods: {
......
<template>
<div class="eContainer">
<c-page title="即期结汇">
<el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right" size="small"
<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">
<el-tab-pane label="概要" name="ovwp">
<c-content>
<m-ovwp :model="model" :codes="codes" />
<m-ovwp :model="model" :codes="codes"/>
</c-content>
</el-tab-pane>
<el-tab-pane label="费用/账务" name="setpan">
<c-content>
<m-setpan :codes="codes" :model="model" />
<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>-->
<el-tab-pane label="结售汇申报" name="jshmod">
<c-content>
<m-jshmod :codes="codes" :model="model" ref="jshmod" />
</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>
</el-form>
<c-function-btn
......@@ -32,24 +38,26 @@
</div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import Fxtssb from "../model"
import Ovwp from "./Ovwp"
import Setpan from "~/components/business/setmod/views";
import Docpan from "~/components/business/docpan/views";
import CodeTable from "~/config/CodeTable"
import Fxtssb from "../model"
import Ovwp from "./Ovwp"
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";
import Check from "../model/Check.js";
export default {
import operationFunc from "~/mixin/operationFunc";
import commonDepend from "~/mixin/commonDepend";
import event from "../event";
import buildFn from "../event/buildCommons.js";
import Check from "../model/Check.js";
import Jshmod from "~/components/business/jshmod/views/index";
export default {
name: "Fxtssb",
components: {
"m-ovwp": Ovwp,
"m-setpan": Setpan,
"m-docpan": Docpan,
"m-jshmod": Jshmod,
},
provide() {
return {
......@@ -64,7 +72,7 @@ export default {
trnType: "",
model: new Fxtssb().data,
rules: Check,
codes: { ...CodeTable },
codes: {...CodeTable},
}
},
methods: {
......@@ -84,6 +92,6 @@ export default {
};
this.init(params)
}
}
}
</script>
<style></style>
......@@ -21,16 +21,25 @@ export default {
};
},
buildCommonData(model, trnName) {
let ptsptaList = Utils.formatPtspta(model.fxtp.fxdgrp, this.buildPtspta);
let ptsptaList = Utils.formatPtspta(model.fxdgrp, this.buildPtspta);
return {
rec: {
objtyp: "FXT",
objinr: model.fxtp.fxdgrp.rec.inr,
ownref: model.fxtp.fxdgrp.rec.ownref,
objtyp: "FXD",
objinr: model.fxdgrp.rec.inr,
ownref: model.fxdgrp.rec.ownref,
fxtyp: model.fxdgrp.rec.fxtyp,
acc: model.fxdgrp.rec.acc,
acc2: model.fxdgrp.rec.acc2,
dsp: model.fxdgrp.rec.dsp,
dsp2: model.fxdgrp.rec.dsp2,
trdint: model.fxdgrp.rec.trdint,
trdout: model.fxdgrp.rec.trdout,
trnman: model.fxdgrp.rec.trnman,
rat: model.fxdgrp.rec.rat,
},
cbsMap: {
MAX: model.fxtp.fxdgrp.cbs.max,
NOM1: model.fxtp.fxdgrp.cbs.nom1,
MAX: model.fxdgrp.cbs.max,
NOM1: model.fxdgrp.cbs.nom1,
},
ptsList: ptsptaList,
transName: trnName,
......
import commonFunctions from '~/mixin/commonFunctions.js';
import Api from '~/service/Api';
import commonFunctions from "~/mixin/commonFunctions.js";
import Api from "~/service/Api";
export default {
mixins: [commonFunctions],
methods: {
async getOwnref(){
async getOwnref() {
if (this.model.fxdgrp.rec.fxtyp == "") {
this.$notify.warning({
title: "提示",
message: "请先选择结售汇类型!",
});
return;
}
const loading = this.loading();
let res = await Api.post(
`/${this.moduleRouter()}/fxtsss/getRef`,
this.model
);
loading.close();
if (res.respCode !== SUCCESS) {
this.$message.error(res.respMsg);
return;
}
this.model.fxdgrp.rec.ownref = res.data;
},
async defaultAccountsN1000() {
if (this.model.fxdgrp.rec.fxtyp == "") {
return;
}
if (this.model.fxdgrp.cbs.max.cur == "") {
return;
}
if (this.model.fxdgrp.apl.pts.ptyinr == "") {
return;
}
const loading = this.loading();
let res = await Api.post(
`/${this.moduleRouter()}/fxtsss/defaultAccountsN1000`,
this.model
);
loading.close();
if (res.respCode !== SUCCESS) {
this.$message.error(res.respMsg);
return;
}
// this.updateValueSet(res.codeSet);
this.model.accLst = res.codeSet["accLst"];
this.model.accLst2 = res.codeSet["acc2Lst"];
this.model.fxdgrp.rec.acc = res.data.fxdgrp.rec.acc;
this.model.fxdgrp.rec.acc2 = res.data.fxdgrp.rec.acc2;
},
async defaultRateN1000() {
if (this.model.fxdgrp.rec.fxtyp == "") {
return;
}
if (this.model.fxdgrp.cbs.max.cur == "") {
return;
}
if (this.model.fxdgrp.apl.pts.ptyinr == "") {
return;
}
const loading = this.loading();
let res = await Api.post(
`/${this.moduleRouter()}/fxtsss/defaultRateN1000`,
this.model
);
loading.close();
if (res.respCode !== SUCCESS) {
this.$message.error(res.respMsg);
return;
}
this.model.fxdgrp.rec.rat = res.data.fxdgrp.rec.rat;
this.model.fxdgrp.rec.midrat = res.data.fxdgrp.rec.midrat;
},
async defaultAccAndRate() {
this.defaultAccountsN1000();
await this.defaultRateN1000();
this.defaultCalculateN1100();
},
async defaultCalculateN1100() {
if (this.model.fxdgrp.rec.rat == "") {
return;
}
if (this.model.fxdgrp.cbs.max.cur == "") {
return;
}
if (
this.model.fxdgrp.cbs.max.amt == "" ||
this.model.fxdgrp.cbs.max.amt == 0
) {
return;
}
const loading = this.loading();
let res = await Api.post(
`/${this.moduleRouter()}/fxtsss/defaultCalculateN1100`,
this.model
);
loading.close();
if (res.respCode !== SUCCESS) {
this.$message.error(res.respMsg);
return;
}
}
\ No newline at end of file
this.model.fxdgrp.cbs.max.amt = res.data.fxdgrp.cbs.max.amt;
this.model.fxdgrp.cbs.nom1.amt = res.data.fxdgrp.cbs.nom1.amt;
},
},
};
export default {
"fxtp.fxdgrp.rec.ownref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"fxtp.fxdgrp.rec.nam":[
{type: "string", required: false, message: "必输项"},
{max: 40,message:"长度不能超过40"}
],
"fxtp.fxdgrp.apl.pts.ref":[
{type: "string", required: false, message: "必输项"},
{max: 20,message:"长度不能超过20"}
],
"fxtp.usrget.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"}
],
"fxtp.aplp.ptspta.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"}
],
"fxtp.aplp.ptspta.pts.adrblk":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"fxtp.aplp.ptspta.dbfadrblkcn":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
"fxtp.fxdgrp.cbs.max.amt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
import JshmodCheck from "~/components/business/jshmod/model/check";
"fxtp.fxdgrp.cbs.nom1.amt":[
{type: "number", required: false, message: "必输项"},
{max: 18,message:"整数位不能超过14位"},
{pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/, message: "小数位不能超过3位" }
],
"fxtp.fxdgrp.rec.rat":[
{type: "string", required: false, message: "必输项"},
{max: 12,message:"长度不能超过12"}
],
"fxtp.fxdgrp.rec.quoref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"fxtp.fxdgrp.rec.midrat":[
{type: "string", required: false, message: "必输项"},
{max: 12,message:"长度不能超过12"}
],
"fxtp.fxdgrp.rec.fudref":[
{type: "string", required: false, message: "必输项"},
{max: 16,message:"长度不能超过16"}
],
"fxtp.fxdgrp.rec.opndat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"fxtp.fxdgrp.rec.valdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"fxtp.fxdgrp.rec.setdat":[
{type: "date", required: false, message: "输入正确的日期"}
],
"fxtp.fxdgrp.rec.setdatto":[
{type: "date", required: false, message: "输入正确的日期"}
],
"fxtp.fxdgrp.rec.setdatfrm":[
{type: "date", required: false, message: "输入正确的日期"}
],
"fxtp.fxdgrp.blk.remark":[
{type: "string", required: true, message: "必输项"},
{max: 35,message:"长度不能超过35"}
],
export default function () {
return {
...new JshmodCheck(this).check,
"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" },
],
"fxdgrp.rec.usr": [
{ type: "string", required: false, message: "必输项" },
{ max: 8, message: "长度不能超过8" },
],
"fxdgrp.apl.pts.extkey": [
{ type: "string", required: false, message: "必输项" },
{ max: 16, message: "长度不能超过16" },
],
"fxdgrp.apl.pts.adrblk": [
{ type: "string", required: true, message: "必输项" },
{ max: 35, message: "长度不能超过35" },
],
"fxdgrp.cbs.max.cur": [
{ type: "string", required: true, message: "必输项" },
{ max: 3, message: "3" },
],
"fxdgrp.cbs.max.amt": [
{ type: "string", required: true, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" },
{
pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/,
message: "小数位不能超过3位",
},
],
"fxdgrp.cbs.nom1.amt": [
{ type: "string", required: false, message: "必输项" },
{ max: 18, message: "整数位不能超过14位" },
{
pattern: /(^\d+$)|(^\.\d{1,3}$)|(^\d+\.\d{1,3}$)/,
message: "小数位不能超过3位",
},
],
"fxdgrp.rec.quoref": [
{ type: "string", required: false, message: "必输项" },
{ max: 16, message: "长度不能超过16" },
],
"fxdgrp.rec.fudref": [
{ type: "string", required: false, message: "必输项" },
{ max: 16, message: "长度不能超过16" },
],
"fxdgrp.rec.opndat": [{ required: true, message: "输入正确的日期" }],
"fxdgrp.rec.valdat": [{ required: true, message: "输入正确的日期" }],
"fxdgrp.rec.setdat": [{ required: false, message: "输入正确的日期" }],
"fxdgrp.rec.setdatto": [{ required: false, message: "输入正确的日期" }],
"fxdgrp.rec.setdatfrm": [{ required: false, message: "输入正确的日期" }],
"fxdgrp.blk.remark": [
{ type: "string", required: false, message: "必输项" },
{ max: 35, message: "长度不能超过35" },
],
"fxdgrp.rec.dsp": [
{ type: "string", required: true, message: "必输项" },
{ max: 2, message: "长度不能超过2" },
],
"fxdgrp.rec.dsp2": [
{ type: "string", required: true, message: "必输项" },
{ max: 2, message: "长度不能超过2" },
],
"fxdgrp.rec.acc": [
{ type: "string", required: true, message: "必输项" },
{ max: 21, message: "长度不能超过21" },
],
"fxdgrp.rec.acc2": [
{ type: "string", required: true, message: "必输项" },
{ max: 21, message: "长度不能超过21" },
],
"fxdgrp.rec.trnman": [
{ type: "string", required: true, message: "必输项" },
{ max: 2, message: "长度不能超过2" },
],
"fxdgrp.rec.trdout": [
{ type: "string", required: true, message: "必输项" },
{ max: 3, message: "长度不能超过3" },
],
};
}
import Api from "~/service/Api"
import Pts from "~/page/Model/Common/Pts"
import Pub from "~/components/business/commonModel/index.js";
import Fxdgrp from '~/components/business/commonModel/fxdgrp';
export default class Fxtsss {
constructor() {
this.data = {
fxtp: {
fxdgrp: {
rec: {
ownref: "", // 结售汇业务参考号 .fxtp.fxdgrp.rec.ownref
nam: "", // 名称 .fxtp.fxdgrp.rec.nam
fxtyp: "", // 结售汇类型 .fxtp.fxdgrp.rec.fxtyp
opndat: "", // 登记日期 .fxtp.fxdgrp.rec.opndat
valdat: "", // 起息日 .fxtp.fxdgrp.rec.valdat
rat: "", // 对外牌价 .fxtp.fxdgrp.rec.rat
midrat: "", // 中间价 .fxtp.fxdgrp.rec.midrat
quoref: "", // 询价编号 .fxtp.fxdgrp.rec.quoref
fudref: "", // 资金部编号 .fxtp.fxdgrp.rec.fudref
setdat: "", // 远期交割日 .fxtp.fxdgrp.rec.setdat
setdatfrm: "", // 择期交割起始日 .fxtp.fxdgrp.rec.setdatfrm
setdatto: "", // 择期交割截止日 .fxtp.fxdgrp.rec.setdatto
trnman: "", // 交易主体 .fxtp.fxdgrp.rec.trnman
trdint: "", // 结售汇类型 .fxtp.fxdgrp.rec.trdint
trdout: "", // 结售汇类型 .fxtp.fxdgrp.rec.trdout
acc: "", // 外币结算账号 .fxtp.fxdgrp.rec.acc
acc2: "", // 本币结算账号 .fxtp.fxdgrp.rec.acc2
dsp: "", // 外币结算账号 .fxtp.fxdgrp.rec.dsp
dsp2: "", // 本币结算账号 .fxtp.fxdgrp.rec.dsp2
},
cbs: {
max: {
cur: "", // Currency .fxtp.fxdgrp.cbs.max.cur
amt: "", // Balance .fxtp.fxdgrp.cbs.max.amt
},
nom1: {
cur: "", // Currency .fxtp.fxdgrp.cbs.nom1.cur
amt: "", // Balance .fxtp.fxdgrp.cbs.nom1.amt
},
},
apl: {
pts: new Pts().data,
},
blk: {
remark: "", // 备注 .fxtp.fxdgrp.blk.remark
},
},
amtlab: "", // Amount Label .fxtp.amtlab
cnylab: "", // Amount LabelCNY .fxtp.cnylab
frgchk: "", // 外币 .fxtp.frgchk
cnychk: "", // 人民币 .fxtp.cnychk
aplp: {
ptspta: {
pts: new Pts().data,
dbfadrblkcn: "", // Chinese address .fxtp.aplp.ptspta.dbfadrblkcn
},
ptsget: {
sdamod: {
seainf: "", // .fxtp.aplp.ptsget.sdamod.seainf
dadsnd: "", // Drag Drop Sender .fxtp.aplp.ptsget.sdamod.dadsnd
},
},
},
cshflg: "", // 钞汇标志 .fxtp.cshflg
usrget: {
sdamod: {
seainf: "", // .fxtp.usrget.sdamod.seainf
},
usr: {
extkey: "", // User ID .fxtp.usrget.usr.extkey
},
},
},
fxdgrp: {
apl: {
pts: new Pts().data,
},
},
fxdgrp: new Fxdgrp().data,
setmod: new Pub().data.Setmod,
docpan: new Pub().data.Docpan,
trndia: new Pub().data.Trndia,
jshmod: new Pub().data.Jshmod,
}
}
}
\ No newline at end of file
......@@ -5,12 +5,12 @@
<c-col :span="12" style="padding-right: 20px">
<!-- S0000039 : 结售汇业务参考号 -->
<c-col :span="24">
<c-form-item :label="$t('fxtp.结售汇业务参考号')" prop="fxtp.fxdgrp.rec.ownref">
<c-form-item :label="$t('fxtp.结售汇业务参考号')" prop="fxdgrp.rec.ownref">
<c-fullbox>
<c-input v-model="model.fxtp.fxdgrp.rec.ownref" maxlength="16"></c-input>
<c-input v-model="model.fxdgrp.rec.ownref" maxlength="16" disabled></c-input>
<template slot="footer">
<c-button style="margin: 0 0" size="small" type="primary"
@click="getOwnref">
:disabled="getOwnrefFlg" @click="getOwnref">
获取
</c-button>
</template>
......@@ -20,48 +20,49 @@
<!-- S0000041 : 业务负责人 -->
<c-col :span="24">
<c-form-item label="业务负责人" prop="fxtp.usrget.usr.extkey">
<c-input v-model="model.fxtp.usrget.usr.extkey" maxlength="8"></c-input>
</c-form-item>
<c-form-item label="" prop="fxtp.usrget.sdamod.seainf" style="display:none">
<c-input v-model="model.fxtp.usrget.sdamod.seainf"></c-input>
<c-form-item label="业务负责人" prop="fxdgrp.rec.usr">
<c-input v-model="model.fxdgrp.rec.usr" maxlength="8" disabled></c-input>
</c-form-item>
</c-col>
<!-- S0000047 : 结售汇类型 -->
<c-col :span="24">
<el-form-item :label="$t('fxtp.结售汇类型')" prop="fxtp.fxdgrp.rec.fxtyp">
<c-select v-model="model.fxtp.fxdgrp.rec.fxtyp" :code="codes.fxt_fxtyp" style="width:100%">
<el-form-item :label="$t('fxtp.结售汇类型')" prop="fxdgrp.rec.fxtyp">
<c-select v-model="model.fxdgrp.rec.fxtyp" :code="codes.fxt_fxtyp" style="width:100%"
:filterKey="['SS']"
@change="defaultAccountsN1000">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item label="Sale Amount" prop="fxtp.fxdgrp.cbs.max.cur">
<c-select-cur v-model="model.fxtp.fxdgrp.cbs.max.cur" style="width: 100%" dbCode="curtxt"> </c-select-cur>
<el-form-item label="Sale Amount" prop="fxdgrp.cbs.max.cur">
<c-select-cur v-model="model.fxdgrp.cbs.max.cur" style="width: 100%"
dbCode="curtxt" @change="defaultAccAndRate" :expKey="['CNY']"></c-select-cur>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label-width="5px" prop="fxtp.fxdgrp.cbs.max.amt">
<el-form-item label-width="5px" prop="fxdgrp.cbs.max.amt">
<c-input-currency
:currency="model.fxtp.fxdgrp.cbs.max.cur"
v-model="model.fxtp.fxdgrp.cbs.max.amt"></c-input-currency>
:currency="model.fxdgrp.cbs.max.cur"
v-model="model.fxdgrp.cbs.max.amt"
@change="defaultCalculateN1100"></c-input-currency>
</el-form-item>
</c-col>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item label="Domestic Cur.Amount" prop="fxtp.fxdgrp.cbs.nom1.cur">
<c-select-cur v-model="model.fxtp.fxdgrp.cbs.nom1.cur" style="width: 100%" dbCode="curtxt"> </c-select-cur>
<el-form-item label="Domestic Cur.Amount" prop="fxdgrp.cbs.nom1.cur">
<c-select-cur v-model="model.fxdgrp.cbs.nom1.cur" style="width: 100%" disabled
dbCode="curtxt"></c-select-cur>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label-width="5px" prop="fxtp.fxdgrp.cbs.nom1.amt">
<el-form-item label-width="5px" prop="fxdgrp.cbs.nom1.amt">
<c-input-currency
:currency="model.fxtp.fxdgrp.cbs.nom1.cur"
v-model="model.fxtp.fxdgrp.cbs.nom1.amt"></c-input-currency>
:currency="model.fxdgrp.cbs.nom1.cur" disabled
v-model="model.fxdgrp.cbs.nom1.amt"></c-input-currency>
</el-form-item>
</c-col>
</c-col>
......@@ -69,22 +70,23 @@
<!-- S0000060 : 对外牌价 -->
<c-col :span="24">
<c-form-item :label="$t('fxtp.对外牌价')" prop="fxtp.fxdgrp.rec.rat">
<c-input v-model="model.fxtp.fxdgrp.rec.rat"></c-input>
<c-form-item :label="$t('fxtp.对外牌价')" prop="fxdgrp.rec.rat">
<c-input-currency disabled :precision='6' v-model="model.fxdgrp.rec.rat"></c-input-currency>
</c-form-item>
</c-col>
<!-- S0000061 : 中间价 -->
<c-col :span="24">
<c-col :span="12">
<c-form-item :label="$t('fxtp.中间价')" prop="fxtp.fxdgrp.rec.midrat">
<c-input v-model="model.fxtp.fxdgrp.rec.midrat"></c-input>
<c-form-item :label="$t('fxtp.中间价')" prop="fxdgrp.rec.midrat">
<c-input-currency disabled :precision='6'
v-model="model.fxdgrp.rec.midrat"></c-input-currency>
</c-form-item>
</c-col>
<c-col :span="12">
<el-form-item label-width="5px" prop="fxtp.cshflg">
<c-select v-model="model.fxtp.cshflg" :code="codes.cshflg" style="width:100%">
<c-select v-model="model.fxtp.cshflg" disabled :code="codes.cshflg" style="width:100%">
</c-select>
</el-form-item>
</c-col>
......@@ -93,39 +95,49 @@
<!-- S0000064 : 登记日期 -->
<c-col :span="24">
<el-form-item :label="$t('fxtp.登记日期')" prop="fxtp.fxdgrp.rec.opndat">
<c-date-picker type="date" v-model="model.fxtp.fxdgrp.rec.opndat" style="width:100%"></c-date-picker>
<el-form-item :label="$t('fxtp.登记日期')" prop="fxdgrp.rec.opndat">
<c-date-picker type="date" v-model="model.fxdgrp.rec.opndat" style="width:100%"></c-date-picker>
</el-form-item>
</c-col>
<!-- S0000072 : 远期交割日 -->
<c-col :span="24">
<el-form-item :label="$t('fxtp.远期交割日')" prop="fxtp.fxdgrp.rec.setdat">
<c-date-picker type="date" v-model="model.fxtp.fxdgrp.rec.setdat" style="width:100%"></c-date-picker>
<el-form-item :label="$t('fxtp.远期交割日')" prop="fxdgrp.rec.setdat">
<c-date-picker type="date" v-model="model.fxdgrp.rec.setdat" disabled
style="width:100%"></c-date-picker>
</el-form-item>
</c-col>
<!-- S0000073 : 择期交割起始日 -->
<c-col :span="24">
<el-form-item :label="$t('fxtp.择期交割起始日')" prop="fxtp.fxdgrp.rec.setdatfrm">
<c-date-picker type="date" v-model="model.fxtp.fxdgrp.rec.setdatfrm" style="width:100%"></c-date-picker>
<el-form-item :label="$t('fxtp.择期交割起始日')" prop="fxdgrp.rec.setdatfrm">
<c-date-picker type="date" v-model="model.fxdgrp.rec.setdatfrm" disabled
style="width:100%"></c-date-picker>
</el-form-item>
</c-col>
<!-- S0000078 : 外币结算账号 -->
<c-col :span="24">
<c-col :span="12">
<el-form-item :label="$t('fxtp.外币结算账号')" prop="fxtp.fxdgrp.rec.dsp">
<c-select v-model="model.fxtp.fxdgrp.rec.dsp" :code="codes.fxt_dsp" style="width:100%">
<el-form-item :label="$t('fxtp.外币结算账号')" prop="fxdgrp.rec.dsp">
<c-select v-model="model.fxdgrp.rec.dsp" :code="codes.fxt_dsp" style="width:100%"
:filterKey="['SP','HA','VT','LO']"
@change="defaultAccountsN1000">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label-width="5px" prop="fxtp.fxdgrp.rec.acc">
<c-select v-model="model.fxtp.fxdgrp.rec.acc" style="width:100%">
<el-form-item label-width="5px" prop="fxdgrp.rec.acc">
<c-select v-model="model.fxdgrp.rec.acc" style="width:100%">
<el-option
v-for="(item, idx) in accLst"
:key="idx"
:label="item"
:value="item"
></el-option>
</c-select>
</el-form-item>
</c-col>
......@@ -134,8 +146,8 @@
<!-- S0000075 : 交易主体 -->
<c-col :span="24">
<el-form-item :label="$t('fxtp.交易主体')" prop="fxtp.fxdgrp.rec.trnman">
<c-select v-model="model.fxtp.fxdgrp.rec.trnman" :code="codes.trnman" style="width:100%">
<el-form-item :label="$t('fxtp.交易主体')" prop="fxdgrp.rec.trnman">
<c-select v-model="model.fxdgrp.rec.trnman" :code="codes.trnman" style="width:100%">
</c-select>
</el-form-item>
</c-col>
......@@ -143,26 +155,27 @@
<!-- S0000069 : 备注 -->
<c-col :span="24">
<c-form-item :label="$t('fxtp.备注')" prop="fxtp.fxdgrp.blk.remark">
<c-input type="textarea" v-model="model.fxtp.fxdgrp.blk.remark" maxlength="35" show-word-limit></c-input>
<c-form-item :label="$t('fxtp.备注')" prop="fxdgrp.blk.remark">
<c-input type="textarea" v-model="model.fxdgrp.blk.remark" maxlength="35"
show-word-limit></c-input>
</c-form-item>
</c-col>
</c-col>
<!-- ==================右边================ -->
<c-col :span="12" style="padding-right: 20px">
<!-- S0000040 : 名称 -->
<c-col :span="24">
<c-form-item :label="$t('fxtp.名称')" prop="fxtp.fxdgrp.rec.nam">
<c-input v-model="model.fxtp.fxdgrp.rec.nam" maxlength="40"></c-input>
<c-form-item :label="$t('fxtp.名称')" prop="fxdgrp.rec.nam">
<c-input v-model="defaultNam950" maxlength="40" disabled></c-input>
</c-form-item>
</c-col>
<c-col :span="24">
<el-card class="box-card">
<c-ptap :model="model" :requiredExtkey="true" :disabledExtkey="false" :disabled="false" :isAdrblk="true" :haveAdrLabel="true"
<c-ptap :model="model" :requiredExtkey="true" :disabledExtkey="false" :disabled="false"
:isAdrblk="true" :haveAdrLabel="true"
:isShowCard="false" :argadr="{title: '结售汇申请人',grp: 'fxdgrp', rol: 'apl',}"
:label="{labelExtkey:'结售汇申请人',labelNam:'名称',labelAdrblk:'地址'}" ptytyp="C">
</c-ptap>
......@@ -171,59 +184,65 @@
<!-- S0000062 : 询价编号 -->
<c-col :span="24">
<c-form-item :label="$t('fxtp.询价编号')" prop="fxtp.fxdgrp.rec.quoref">
<c-input v-model="model.fxtp.fxdgrp.rec.quoref" maxlength="16"></c-input>
<c-form-item :label="$t('fxtp.询价编号')" prop="fxdgrp.rec.quoref">
<c-input v-model="model.fxdgrp.rec.quoref" maxlength="16" disabled></c-input>
</c-form-item>
</c-col>
<!-- S0000063 : 资金部编号 -->
<c-col :span="24">
<c-form-item :label="$t('fxtp.资金部编号')" prop="fxtp.fxdgrp.rec.fudref">
<c-input v-model="model.fxtp.fxdgrp.rec.fudref" maxlength="16"></c-input>
<c-form-item :label="$t('fxtp.资金部编号')" prop="fxdgrp.rec.fudref">
<c-input v-model="model.fxdgrp.rec.fudref" maxlength="16" disabled></c-input>
</c-form-item>
</c-col>
<!-- S0000065 : 起息日 -->
<c-col :span="24">
<el-form-item :label="$t('fxtp.起息日')" prop="fxtp.fxdgrp.rec.valdat">
<c-date-picker type="date" v-model="model.fxtp.fxdgrp.rec.valdat" style="width:100%"></c-date-picker>
<el-form-item :label="$t('fxtp.起息日')" prop="fxdgrp.rec.valdat">
<c-date-picker type="date" v-model="model.fxdgrp.rec.valdat" style="width:100%"></c-date-picker>
</el-form-item>
</c-col>
<!-- S0000074 : 择期交割截止日 -->
<c-col :span="24">
<el-form-item :label="$t('fxtp.择期交割截止日')" prop="fxtp.fxdgrp.rec.setdatto">
<c-date-picker type="date" v-model="model.fxtp.fxdgrp.rec.setdatto" style="width:100%"></c-date-picker>
<el-form-item :label="$t('fxtp.择期交割截止日')" prop="fxdgrp.rec.setdatto">
<c-date-picker type="date" v-model="model.fxdgrp.rec.setdatto" disabled
style="width:100%"></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="24">
<c-col :span="12">
<el-form-item :label="$t('fxtp.本币结算账号')" prop="fxtp.fxdgrp.rec.dsp2">
<c-select v-model="model.fxtp.fxdgrp.rec.dsp2" :code="codes.fxt_dsp2" style="width:100%">
<el-form-item :label="$t('fxtp.本币结算账号')" prop="fxdgrp.rec.dsp2">
<c-select v-model="model.fxdgrp.rec.dsp2" :code="codes.fxt_dsp2" style="width:100%"
:filterKey="['SP','LO','HA']"
@change="defaultAccountsN1000">
</c-select>
</el-form-item>
</c-col>
<c-col :span="12">
<el-form-item label-width="5px" prop="fxtp.fxdgrp.rec.acc2">
<c-select v-model="model.fxtp.fxdgrp.rec.acc2" style="width:100%">
<el-form-item label-width="5px" prop="fxdgrp.rec.acc2">
<c-select v-model="model.fxdgrp.rec.acc2" style="width:100%">
<el-option
v-for="(item, idx) in accLst2"
:key="idx"
:label="item"
:value="item"
></el-option>
</c-select>
</el-form-item>
</c-col>
</c-col>
<!-- S0000076 : 结售汇类型 -->
<!-- S0000076 : 结售汇类型 -->
<c-col :span="24">
<el-form-item :label="$t('fxtp.Exchange Title')" prop="fxtp.fxdgrp.rec.trdint">
<c-select v-model="model.fxtp.fxdgrp.rec.trdint" style="width:100%">
</c-select>
</el-form-item>
<el-form-item prop="fxtp.fxdgrp.rec.trdout" style="display:none">
<c-select v-model="model.fxtp.fxdgrp.rec.trdout" style="width:100%">
<el-form-item :label="$t('fxtp.结售汇类型')" prop="fxdgrp.rec.trdout">
<c-select v-model="model.fxdgrp.rec.trdout" style="width:100%" dbCode="TRAOUT"
:filterKey="[ '310','321','322','323','324','325','326','32X','331','332','333','410','420','421','422','423','431','432','440','441','442','450','460','461','462','470']">
</c-select>
</el-form-item>
</c-col>
......@@ -232,22 +251,58 @@
</div>
</template>
<script>
import Api from "~/service/Api"
import Event from "../event"
export default {
import Event from "../event";
export default {
inject: ['root'],
props: ["model", "codes"],
mixins: [],
mixins: [Event],
data() {
return {
accLst: [],
accLst2: [],
}
},
methods: { ...Event },
computed: {
getOwnrefFlg: function () {
let flg = this.model.fxdgrp.rec.fxtyp == '' || this.model.fxdgrp.apl.pts.ptainr == ''
|| this.model.fxdgrp.cbs.max.cur == '' || this.model.fxdgrp.rec.ownref != ''
return flg;
},
defaultNam950: function () {
let amount = this.moneyFormat(this.model.fxdgrp.cbs.max.amt, this.model.fxdgrp.cbs.max.cur);
let nam = this.getCodelabel(this.model.fxdgrp.rec.fxtyp, "fxt_fxtyp") + ","
+ this.model.fxdgrp.cbs.max.cur + " " + amount
this.model.fxdgrp.rec.nam = nam;
return nam;
},
},
methods: {
//获取码值
getCodelabel(value, codenam) {
const codeobj = this.codes[codenam].find(obj => obj.value === value)
return codeobj ? codeobj.label : value;
},
},
created: function () {
},
watch: {
//申请人变得 本外币下拉框需变化
'model.fxdgrp.apl.pts.ptyinr': {
handler(newValue) {
if (newValue == "" || newValue == null) {
this.model.fxdgrp.rec.acc = "";
this.model.fxdgrp.rec.acc2 = "";
this.model.accLst = [];
this.model.accLst2 = [];
return
}
this.defaultAccAndRate();
},
},
}
}
}
</script>
<style></style>
<template>
<div class="eContainer">
<c-page title="即期结汇">
<el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="right" size="small"
<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">
<!--fxtp PD000001 概要 -->
<el-tab-pane :label="$t('fxtp.概要')" name="ovwp">
<c-content>
<m-ovwp :model="model" :codes="codes" />
<m-ovwp :model="model" :codes="codes"/>
</c-content>
</el-tab-pane>
<el-tab-pane label="费用/账务" name="setpan">
<c-content>
<m-setpan :codes="codes" :model="model" />
<m-setpan :codes="codes" :model="model"/>
</c-content>
</el-tab-pane>
<el-tab-pane label="报文/面函" name="docpan">
<!-- <el-tab-pane label="报文/面函" name="docpan">-->
<!-- <c-content>-->
<!-- <m-docpan :codes="codes" :model="model"/>-->
<!-- </c-content>-->
<!-- </el-tab-pane>-->
<el-tab-pane label="结售汇申报" name="jshmod">
<c-content>
<m-docpan :codes="codes" :model="model" />
<m-jshmod :codes="codes" :model="model" ref="jshmod" />
</c-content>
</el-tab-pane>
</c-tabs>
......@@ -33,24 +39,26 @@
</div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import Fxtsss from "../model"
import Ovwp from "./Ovwp"
import Setpan from "~/components/business/setmod/views";
import Docpan from "~/components/business/docpan/views";
import CodeTable from "~/config/CodeTable"
import Fxtsss from "../model"
import Ovwp from "./Ovwp"
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 Check from "../model/Check.js";
import buildFn from "../event/buildCommons.js";
export default {
import operationFunc from "~/mixin/operationFunc";
import commonDepend from "~/mixin/commonDepend";
import event from "../event";
import Check from "../model/Check.js";
import buildFn from "../event/buildCommons.js";
import Jshmod from "~/components/business/jshmod/views/index";
export default {
name: "Fxtsss",
components: {
"m-ovwp": Ovwp,
"m-setpan": Setpan,
"m-docpan": Docpan,
"m-jshmod": Jshmod,
},
provide() {
return {
......@@ -65,7 +73,7 @@ export default {
trnType: "",
model: new Fxtsss().data,
rules: Check,
codes: { ...CodeTable },
codes: {...CodeTable},
}
},
methods: {
......@@ -85,6 +93,6 @@ export default {
};
this.init(params)
}
}
}
</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