Commit 79955b3a by liaoxing

Merge branch 'settle-test-20230110' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'settle-test-20230110' of http://114.115.138.98:8900/fukai/vue-gjjs into settle-test-20230110
parents a7c23672 b5df8b16
...@@ -584,7 +584,6 @@ export default { ...@@ -584,7 +584,6 @@ export default {
}, },
methods: { methods: {
...Event,
async getButtons(ownref, closedDate) { async getButtons(ownref, closedDate) {
this.ownref = ownref; this.ownref = ownref;
this.TrtselModel.clsflg = (closedDate ?? "").trim() === "" ? "" : "C"; this.TrtselModel.clsflg = (closedDate ?? "").trim() === "" ? "" : "C";
......
...@@ -463,7 +463,7 @@ export default { ...@@ -463,7 +463,7 @@ export default {
'lidgrp.rec.stagod': [{ required: true, message: '必输项' }], 'lidgrp.rec.stagod': [{ required: true, message: '必输项' }],
'lidgrp.rec.tenmaxday': [ 'lidgrp.rec.tenmaxday': [
{ type: 'number', required: true, message: '请输入数字' }, { type: 'number', message: '请输入数字' },
{ type: 'number', max: 999, message: '不能超过999' }, { type: 'number', max: 999, message: '不能超过999' },
{ pattern: /(^-?[1-9][0-9]{0,2}$)|0/, message: '-999至999之间' }, { pattern: /(^-?[1-9][0-9]{0,2}$)|0/, message: '-999至999之间' },
// ^-?[1-9]\d*$   //匹配整数 // ^-?[1-9]\d*$   //匹配整数
...@@ -526,10 +526,10 @@ export default { ...@@ -526,10 +526,10 @@ export default {
{ type: 'string', required: true, message: '必输项' }, { type: 'string', required: true, message: '必输项' },
{ max: 35, message: '长度不能超过35' }, { max: 35, message: '长度不能超过35' },
], ],
'lidgrp.ini.pts.adrblk': [ // 'lidgrp.ini.pts.adrblk': [
{ type: 'string', required: false, message: '必输项' }, // { type: 'string', required: false, message: '必输项' },
{ max: 35, message: '长度不能超过35' }, // { max: 35, message: '长度不能超过35' },
], // ],
'lidgrp.ini.dbfadrblkcn': [ 'lidgrp.ini.dbfadrblkcn': [
{ type: 'string', required: true, message: '必输项' }, { type: 'string', required: true, message: '必输项' },
{ max: 35, message: '长度不能超过35' }, { max: 35, message: '长度不能超过35' },
......
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
<el-form-item label="名称地址" prop="lidgrp.drw.pts.adrblk"> <el-form-item label="名称地址" prop="lidgrp.drw.pts.adrblk" :required="flag7">
<c-input <c-input
type="textarea" type="textarea"
:disabled="this.flag2" :disabled="this.flag2"
...@@ -309,6 +309,7 @@ ...@@ -309,6 +309,7 @@
<el-form-item <el-form-item
label="远期汇票最大期限(天)" label="远期汇票最大期限(天)"
prop="lidgrp.rec.tenmaxday" prop="lidgrp.rec.tenmaxday"
:required="flag8"
> >
<c-input <c-input
:disabled="!!(this.model.lidgrp.rec.avbby == 'P')" :disabled="!!(this.model.lidgrp.rec.avbby == 'P')"
...@@ -338,7 +339,8 @@ export default { ...@@ -338,7 +339,8 @@ export default {
flag4: true, flag4: true,
flag5: false, flag5: false,
flag6: false, flag6: false,
flag7: false,
flag8: true,
}; };
}, },
methods: { methods: {
...@@ -385,18 +387,22 @@ export default { ...@@ -385,18 +387,22 @@ export default {
this.flag1 = false; this.flag1 = false;
this.flag2 = true; this.flag2 = true;
this.flag3 = true; this.flag3 = true;
this.flag7 = false;
this.model.lidgrp.blk.defdet="days after B/L date" this.model.lidgrp.blk.defdet="days after B/L date"
} }
if (val == "N") { if (val == "N") {
this.flag1 = false; this.flag1 = false;
this.flag2 = false; this.flag2 = false;
this.flag3 = true; this.flag3 = true;
this.flag7 = true;
this.model.lidgrp.blk.defdet="days after B/L date" this.model.lidgrp.blk.defdet="days after B/L date"
} }
if (val == "P") { if (val == "P") {
this.flag1 = true; this.flag1 = true;
this.flag2 = false; this.flag2 = false;
this.flag3 = true; this.flag3 = true;
this.flag7 = false;
this.flag8 = false;
this.model.lidgrp.rec.tenmaxday == 0 this.model.lidgrp.rec.tenmaxday == 0
this.model.lidgrp.blk.defdet="" this.model.lidgrp.blk.defdet=""
} }
...@@ -404,12 +410,14 @@ export default { ...@@ -404,12 +410,14 @@ export default {
this.flag1 = true; this.flag1 = true;
this.flag2 = true; this.flag2 = true;
this.flag3 = false; this.flag3 = false;
this.flag7 = false;
this.model.lidgrp.blk.defdet="" this.model.lidgrp.blk.defdet=""
} }
if (val == "A") { if (val == "A") {
this.flag1 = true; this.flag1 = true;
this.flag2 = false; this.flag2 = false;
this.flag3 = true; this.flag3 = true;
this.flag7 = true;
this.model.lidgrp.blk.defdet="" this.model.lidgrp.blk.defdet=""
} }
}, },
......
...@@ -33,13 +33,13 @@ export default { ...@@ -33,13 +33,13 @@ export default {
branchInr: model.trdgrp.rec.branchinr, branchInr: model.trdgrp.rec.branchinr,
}, },
cbsMap: { cbsMap: {
MAX: model.brdgrp.cbs.max, MAX: model.trdgrp.cbs.max,
OPN1: model.brdgrp.cbs.opn1, OPN1: model.trdgrp.cbs.opn1,
// OPN2: model.brdgrp.cbs.opn2, // OPN2: model.trdgrp.cbs.opn2,
// MAC: model.brdgrp.cbs.mac, // MAC: model.trdgrp.cbs.mac,
// MAC2: model.brdgrp.cbs.mac2, // MAC2: model.trdgrp.cbs.mac2,
// OPC2: model.brdgrp.cbs.opc2, // OPC2: model.trdgrp.cbs.opc2,
// CNF: model.brdgrp.cbs.cnf, // CNF: model.trdgrp.cbs.cnf,
}, },
ptsList: ptsptaList, ptsList: ptsptaList,
transName: trnName, transName: trnName,
...@@ -102,9 +102,9 @@ export default { ...@@ -102,9 +102,9 @@ export default {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
rec: { rec: {
objtyp: 'lid', objtyp: 'trd',
objinr: model.brdgrp.rec.objinr, objinr: model.trdgrp.rec.objinr,
ownref: model.brdgrp.rec.ownref, ownref: model.trdgrp.rec.ownref,
}, },
}; };
return params return params
...@@ -113,9 +113,9 @@ export default { ...@@ -113,9 +113,9 @@ export default {
let params = { let params = {
...this.buildCommonData(model, trnName), ...this.buildCommonData(model, trnName),
rec: { rec: {
objtyp: 'lid', objtyp: 'trd',
objinr: model.brdgrp.rec.objinr, objinr: model.trdgrp.rec.objinr,
ownref: model.brdgrp.rec.ownref, ownref: model.trdgrp.rec.ownref,
swiftflg: model.brtp.swiftflg, swiftflg: model.brtp.swiftflg,
}, },
}; };
......
...@@ -20,12 +20,12 @@ export default { ...@@ -20,12 +20,12 @@ export default {
...ccvpan, ...ccvpan,
...limitbody, ...limitbody,
...doctre, ...doctre,
async init () { async init() {
const params = { const params = {
spt: JSON.parse(localStorage.getItem('row_' + this.trnName)), spt: JSON.parse(localStorage.getItem('row_' + this.trnName)),
trninr: this.$route.query.trninr, trninr: this.$route.query.trninr,
} }
if( typeof(this.$route.query.inr) == 'string') { if (typeof (this.$route.query.inr) == 'string') {
params.spt = null params.spt = null
} }
const loading = this.loading(); const loading = this.loading();
...@@ -33,13 +33,13 @@ export default { ...@@ -33,13 +33,13 @@ export default {
...params, ...params,
transName: this.trnName, transName: this.trnName,
userId: window.sessionStorage.userId || 'ZL', userId: window.sessionStorage.userId || 'ZL',
trdgrp:{ trdgrp: {
rec:{ rec: {
inr:this.$route.query.inr inr: this.$route.query.inr
} }
} }
}); });
// debugger loading.close();
if (!res.data) { if (!res.data) {
return return
} }
...@@ -49,7 +49,7 @@ export default { ...@@ -49,7 +49,7 @@ export default {
this.copyValueFromVoData(this.model.setmod.setglg, res.data.setglg) this.copyValueFromVoData(this.model.setmod.setglg, res.data.setglg)
}, },
// 兼容处理在前端model中定义了字段,后端返回的数据中不存在字段的问题 // 兼容处理在前端model中定义了字段,后端返回的数据中不存在字段的问题
copyValueFromVoData (model, data) { copyValueFromVoData(model, data) {
let keysList = Object.keys(model) let keysList = Object.keys(model)
keysList.map((key) => { keysList.map((key) => {
if (data[key]) { if (data[key]) {
...@@ -174,7 +174,7 @@ export default { ...@@ -174,7 +174,7 @@ export default {
handleChangePurpos() { handleChangePurpos() {
this.queryHndtypCodeTableList(this.root.trnName); this.queryHndtypCodeTableList(this.root.trnName);
}, },
buildLiaccv () { buildLiaccv() {
let params = { let params = {
...buildFn.buildCommonData(this.model, this.trnName), ...buildFn.buildCommonData(this.model, this.trnName),
liaccvg: this.model.liaccv.liaccvg, liaccvg: this.model.liaccv.liaccvg,
...@@ -186,7 +186,7 @@ export default { ...@@ -186,7 +186,7 @@ export default {
return params return params
}, },
// 公共组件setmod处理方式改变触发联动 // 公共组件setmod处理方式改变触发联动
changeSetmodModel (emitParams) { changeSetmodModel(emitParams) {
let reqParams = {} let reqParams = {}
switch (emitParams.code) { switch (emitParams.code) {
case 'processMethods': case 'processMethods':
......
...@@ -2,104 +2,104 @@ import Pts from '~/components/business/commonModel/Pts'; ...@@ -2,104 +2,104 @@ import Pts from '~/components/business/commonModel/Pts';
import Pub from '~/components/business/commonModel/index.js'; import Pub from '~/components/business/commonModel/index.js';
export default class Trtset{ export default class Trtset {
constructor () { constructor() {
this.data = { this.data = {
trdgrp:{ trdgrp: {
rec:{ rec: {
inr:"", inr: "",
pntref:"", // 父交易参考号 .trdgrp.rec.pntref pntref: "", // 父交易参考号 .trdgrp.rec.pntref
pntnam:"", // Name .trdgrp.rec.pntnam pntnam: "", // Name .trdgrp.rec.pntnam
ownref:"", // 参考号 .trdgrp.rec.ownref ownref: "", // 参考号 .trdgrp.rec.ownref
nam:"", // Name .trdgrp.rec.nam nam: "", // Name .trdgrp.rec.nam
pctfin:"", // 融资比例 .trdgrp.rec.pctfin pctfin: "", // 融资比例 .trdgrp.rec.pctfin
stttendat:"", // 起息日期 .trdgrp.rec.stttendat stttendat: "", // 起息日期 .trdgrp.rec.stttendat
matdat:"", // Maturity Date .trdgrp.rec.matdat matdat: "", // Maturity Date .trdgrp.rec.matdat
fintyp:"", // 融资品种 .trdgrp.rec.fintyp fintyp: "", // 融资品种 .trdgrp.rec.fintyp
finact:"", // 融资账号 .trdgrp.rec.finact finact: "", // 融资账号 .trdgrp.rec.finact
ovdflg:"", // Overdue Flag .trdgrp.rec.ovdflg ovdflg: "", // Overdue Flag .trdgrp.rec.ovdflg
actrat:"", // 执行利率 .trdgrp.rec.actrat actrat: "", // 执行利率 .trdgrp.rec.actrat
branchinr: "", branchinr: "",
}, },
cbs:{ cbs: {
max:{ max: {
cur:"", // 融资金额 .trdgrp.cbs.max.cur cur: "", // 融资金额 .trdgrp.cbs.max.cur
amt:"", // 融资金额 .trdgrp.cbs.max.amt amt: "", // 融资金额 .trdgrp.cbs.max.amt
}, },
opn1:{ opn1: {
cur:"", // 余额 .trdgrp.cbs.opn1.cur cur: "", // 余额 .trdgrp.cbs.opn1.cur
amt:"", // Balance .trdgrp.cbs.opn1.amt amt: "", // Balance .trdgrp.cbs.opn1.amt
}, },
}, },
fip:{ fip: {
pts:new Pts().data, pts: new Pts().data,
}, },
}, },
trtp0:{ trtp0: {
bcdget:{ bcdget: {
sdamod:{ sdamod: {
seainf:"", // .trtp0.bcdget.sdamod.seainf seainf: "", // .trtp0.bcdget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .trtp0.bcdget.sdamod.dadsnd dadsnd: "", // Drag Drop Sender .trtp0.bcdget.sdamod.dadsnd
}, },
}, },
ledget:{ ledget: {
sdamod:{ sdamod: {
seainf:"", // .trtp0.ledget.sdamod.seainf seainf: "", // .trtp0.ledget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .trtp0.ledget.sdamod.dadsnd dadsnd: "", // Drag Drop Sender .trtp0.ledget.sdamod.dadsnd
}, },
}, },
brdget:{ brdget: {
sdamod:{ sdamod: {
seainf:"", // .trtp0.brdget.sdamod.seainf seainf: "", // .trtp0.brdget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .trtp0.brdget.sdamod.dadsnd dadsnd: "", // Drag Drop Sender .trtp0.brdget.sdamod.dadsnd
}, },
}, },
bedget:{ bedget: {
sdamod:{ sdamod: {
seainf:"", // .trtp0.bedget.sdamod.seainf seainf: "", // .trtp0.bedget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .trtp0.bedget.sdamod.dadsnd dadsnd: "", // Drag Drop Sender .trtp0.bedget.sdamod.dadsnd
}, },
}, },
recget:{ recget: {
sdamod:{ sdamod: {
seainf:"", // .trtp0.recget.sdamod.seainf seainf: "", // .trtp0.recget.sdamod.seainf
dadsnd:"", // Drag Drop Sender .trtp0.recget.sdamod.dadsnd dadsnd: "", // Drag Drop Sender .trtp0.recget.sdamod.dadsnd
}, },
}, },
}, },
trtmod:{ trtmod: {
finmod:{ finmod: {
setlab:"", // Settlement Label .trtmod.finmod.setlab setlab: "", // Settlement Label .trtmod.finmod.setlab
fincod:"", // 借据号 .trtmod.finmod.fincod fincod: "", // 借据号 .trtmod.finmod.fincod
reptyp:"", // 还款方式 .trtmod.finmod.reptyp reptyp: "", // 还款方式 .trtmod.finmod.reptyp
cbs:{ cbs: {
cbb:{ cbb: {
intamt1:"", // 表外欠息利息 .trtmod.finmod.cbs.cbb.intamt1 intamt1: "", // 表外欠息利息 .trtmod.finmod.cbs.cbb.intamt1
intamty1:"", // 表外本年欠息 .trtmod.finmod.cbs.cbb.intamty1 intamty1: "", // 表外本年欠息 .trtmod.finmod.cbs.cbb.intamty1
intamt2:"", // 表内欠息利息 .trtmod.finmod.cbs.cbb.intamt2 intamt2: "", // 表内欠息利息 .trtmod.finmod.cbs.cbb.intamt2
intamty2:"", // 表内本年欠息 .trtmod.finmod.cbs.cbb.intamty2 intamty2: "", // 表内本年欠息 .trtmod.finmod.cbs.cbb.intamty2
intamt:"", // 利息 .trtmod.finmod.cbs.cbb.intamt intamt: "", // 利息 .trtmod.finmod.cbs.cbb.intamt
amt:"", // 本金 .trtmod.finmod.cbs.cbb.amt amt: "", // 本金 .trtmod.finmod.cbs.cbb.amt
}, },
cbe:{ cbe: {
intamt1:"", // 偿还表外欠息利息 .trtmod.finmod.cbs.cbe.intamt1 intamt1: "", // 偿还表外欠息利息 .trtmod.finmod.cbs.cbe.intamt1
intamty1:"", // 偿还表外欠息 .trtmod.finmod.cbs.cbe.intamty1 intamty1: "", // 偿还表外欠息 .trtmod.finmod.cbs.cbe.intamty1
intamt2:"", // 偿还表内欠息利息 .trtmod.finmod.cbs.cbe.intamt2 intamt2: "", // 偿还表内欠息利息 .trtmod.finmod.cbs.cbe.intamt2
intamty2:"", // 偿还表内欠息 .trtmod.finmod.cbs.cbe.intamty2 intamty2: "", // 偿还表内欠息 .trtmod.finmod.cbs.cbe.intamty2
intamt:"", // 偿还本金利息 .trtmod.finmod.cbs.cbe.intamt intamt: "", // 偿还本金利息 .trtmod.finmod.cbs.cbe.intamt
amt:"", // 偿还本金 .trtmod.finmod.cbs.cbe.amt amt: "", // 偿还本金 .trtmod.finmod.cbs.cbe.amt
}, },
totint:"", // 偿还利息总额 .trtmod.finmod.cbs.totint totint: "", // 偿还利息总额 .trtmod.finmod.cbs.totint
}, },
acttyp:"", // 第三方还款方式 .trtmod.finmod.acttyp acttyp: "", // 第三方还款方式 .trtmod.finmod.acttyp
act3:"", // 第三方还款账号 .trtmod.finmod.act3 act3: "", // 第三方还款账号 .trtmod.finmod.act3
intprd:"", // 计息周期 .trtmod.finmod.intprd intprd: "", // 计息周期 .trtmod.finmod.intprd
}, },
}, },
setamt:"", // Settlement Amount .setamt setamt: "", // Settlement Amount .setamt
setact:"", // Settlement Account .setact setact: "", // Settlement Account .setact
clsflg:"", // 抹�'� .clsflg clsflg: "", // 抹�'� .clsflg
setact1:"", // 我行借记�'�户 .setact1 setact1: "", // 我行借记�'�户 .setact1
setmod: new Pub().data.Setmod, setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut, mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod, trnmod: new Pub().data.Trnmod,
...@@ -107,7 +107,7 @@ export default class Trtset{ ...@@ -107,7 +107,7 @@ export default class Trtset{
liaccv: new Pub().data.Liaccv, liaccv: new Pub().data.Liaccv,
docpan: new Pub().data.Docpan, docpan: new Pub().data.Docpan,
pageId: "", // ctx的key pageId: "", // ctx的key
trtfipl1blk:"", trtfipl1blk: "",
} }
} }
} }
\ No newline at end of file
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<el-collapse v-model="activeNames" @change="handleChange"> <el-collapse v-model="activeNames">
<el-collapse-item title="附言" name="coninfp"> <el-collapse-item title="附言" name="coninfp">
<m-coninfp :model="model" :codes="codes" /> <m-coninfp :model="model" :codes="codes"/>
</el-collapse-item> </el-collapse-item>
</el-collapse> </el-collapse>
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api"; import commonProcess from "~/mixin/commonProcess";
import commonProcess from "~/mixin/commonProcess"; import event from "../event";
import Event from "~/model/Bptcan/Event"; import Coninfp from "~/views/Public/Coninfp";
import Coninfp from "~/views/Public/Coninfp";
export default { export default {
components: { components: {
"m-coninfp": Coninfp, "m-coninfp": Coninfp,
}, },
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess, event],
data() { data() {
return { return {
activeNames: ["coninfp"], activeNames: ["coninfp"],
}; };
}, },
methods: { methods: {},
...Event, created: function () {
handleChange(val) {
console.log(val);
},
}, },
created: function () {}, };
}; </script>
</script>
<style> <style>
</style> </style>
\ No newline at end of file
...@@ -26,13 +26,11 @@ ...@@ -26,13 +26,11 @@
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
@click="onSeainf"
/> />
<c-button <c-button
style="margin: 0 0" style="margin: 0 0"
size="small" size="small"
type="primary" type="primary"
@click="onWrkpDet"
icon="el-icon-info" icon="el-icon-info"
> >
...@@ -87,7 +85,6 @@ ...@@ -87,7 +85,6 @@
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
@click="onLimptsGet1"
:disabled = "true" :disabled = "true"
> >
</c-button> </c-button>
...@@ -137,13 +134,11 @@ ...@@ -137,13 +134,11 @@
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
@click="onSeainf"
/> />
<c-button <c-button
style="margin: 0 0" style="margin: 0 0"
size="small" size="small"
type="primary" type="primary"
@click="onOthpDet"
icon="el-icon-info" icon="el-icon-info"
> >
...@@ -197,7 +192,6 @@ ...@@ -197,7 +192,6 @@
size="small" size="small"
type="primary" type="primary"
icon="el-icon-search" icon="el-icon-search"
@click="onLimptsGet2"
> >
</c-button> </c-button>
</template> </template>
...@@ -262,7 +256,7 @@ ...@@ -262,7 +256,7 @@
</c-col> </c-col>
<c-col :span="24" style="text-align: right"> <c-col :span="24" style="text-align: right">
<c-button size="small" type="primary" @click="onLimmodTrycal"> <c-button size="small" type="primary">
试算 试算
</c-button> </c-button>
</c-col> </c-col>
...@@ -331,15 +325,13 @@ ...@@ -331,15 +325,13 @@
</template> </template>
<script> <script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"; import CodeTable from "~/config/CodeTable";
// import Event from "~/model/Ditopn/Event"; import event from '../event'
export default { export default {
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess,event],
data() { data() {
return { return {
tableData: {}, tableData: {},
...@@ -347,40 +339,6 @@ export default { ...@@ -347,40 +339,6 @@ export default {
}; };
}, },
methods: { methods: {
onSeainf() {},
async onPreperButtxmsel() {
let rtnmsg = await this.executeRule("preper_buttxmsel");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
async onLimptsGet1() {
let rtnmsg = await this.executeRule("limpts_get1");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
async onLimptsGet2() {
let rtnmsg = await this.executeRule("limpts_get2");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
nonrevflg1Change() { nonrevflg1Change() {
if (this.model.liaall.limmod.limpts.nonrevflg1 == "1") { if (this.model.liaall.limmod.limpts.nonrevflg1 == "1") {
this.model.liaall.limmod.limpts.pfcod1 = ""; this.model.liaall.limmod.limpts.pfcod1 = "";
...@@ -391,39 +349,7 @@ export default { ...@@ -391,39 +349,7 @@ export default {
this.model.liaall.limmod.limpts.pfcod2 = ""; this.model.liaall.limmod.limpts.pfcod2 = "";
} }
}, },
async onWrkpDet() {
let rtnmsg = await this.executeRule("liaall.limmod.wrkp.det");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
console.log(rtnmsg.data);
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
async onOthpDet() {
let rtnmsg = await this.executeRule("liaall.limmod.othp.det");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
console.log(rtnmsg.data);
} else {
this.$notify.error({
title: "错误",
message: "服务请求失败!",
});
}
},
async onLimmodTrycal() {
let rtnmsg = await this.executeRule("liaall.limmod.trycal");
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
} else {
this.$notify.error({ title: "错误", message: "服务请求失败!" });
}
},
show(){ show(){
let len1 = this.model.liaall.limmod.tygrd["rows"].length||[]; let len1 = this.model.liaall.limmod.tygrd["rows"].length||[];
let len2 = this.model.liaall.limmod.dggrd["rows"].length||[]; let len2 = this.model.liaall.limmod.dggrd["rows"].length||[];
......
<!-- <el-tab-pane label="统一授信" name="shisuan,limitbody">
<c-content>
<div class="eibs-tab">
<el-collapse v-model="activeNames">
<el-collapse-item title="试算结果" name="shisuan">
试算结果
<m-shisuan :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="统一授信" name="limitbody">
统一授信
<m-limitbody :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
</div>
</c-content>
</el-tab-pane> -->
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-content> <c-content>
...@@ -32,7 +15,6 @@ ...@@ -32,7 +15,6 @@
</div> </div>
</template> </template>
<script> <script>
// import Limitbody from '~/views/Public/Limitbody';
import Shisuan from "./Shisuan"; import Shisuan from "./Shisuan";
import Limitbody from "./Limitbody"; import Limitbody from "./Limitbody";
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<el-collapse v-model="activeNames"> <el-collapse v-model="activeNames">
<el-collapse-item title="还款" name="ovwp1"> <el-collapse-item title="还款" name="ovwp1">
<m-ovwp1 :model="model" :codes="codes" /> <m-ovwp1 :model="model" :codes="codes" />
</el-collapse-item> </el-collapse-item>
...@@ -9,10 +8,8 @@ ...@@ -9,10 +8,8 @@
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"; import event from "../event";
import Event from "~/model/Trtame/Event";
import Ovwp1 from "./Ovwp1"; import Ovwp1 from "./Ovwp1";
export default { export default {
...@@ -21,18 +18,15 @@ export default { ...@@ -21,18 +18,15 @@ export default {
}, },
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess,event],
data() { data() {
return { return {
activeNames: ["ovwp1"], activeNames: ["ovwp1"],
}; };
}, },
methods: { methods: {},
...Event,
},
created: function () {}, created: function () {},
computed: { computed: {},
},
}; };
</script> </script>
<style> <style>
......
...@@ -164,9 +164,9 @@ ...@@ -164,9 +164,9 @@
<c-col :span="4"> <c-col :span="4">
<c-checkbox <c-checkbox
v-model="model.clsflg" v-model="model.clsflg"
:disabled="checkDate(model.trdgrp.rec.stttendat)"
@change="change(model.clsflg)"
>{{ $t("抹账") }}</c-checkbox ></c-checkbox
> >
</c-col> </c-col>
</c-col> </c-col>
...@@ -422,7 +422,7 @@ ...@@ -422,7 +422,7 @@
></c-input> ></c-input>
</c-col> </c-col>
<c-col :span="4"> <c-col :span="4">
<c-button v-model="model.trtmod.finmod.cal" size="small" type="primary" @click="onFinmodCal"> <c-button v-model="model.trtmod.finmod.cal" size="small" type="primary" >
计算 计算
</c-button> </c-button>
</c-col> </c-col>
...@@ -436,7 +436,7 @@ ...@@ -436,7 +436,7 @@
v-model="model.trtmod.finmod.reptyp" v-model="model.trtmod.finmod.reptyp"
:disabled="model.clsflg == 'X'" :disabled="model.clsflg == 'X'"
style="width: 100%" style="width: 100%"
@change="selChange(model.trtmod.finmod.reptyp)"
placeholder="请选择还款方式" placeholder="请选择还款方式"
> >
<el-option <el-option
...@@ -560,9 +560,7 @@ ...@@ -560,9 +560,7 @@
<el-form-item label="" prop="" class="checkbox-left"> <el-form-item label="" prop="" class="checkbox-left">
<c-checkbox v-model="model.mtabut.clsflg" <c-checkbox v-model="model.mtabut.clsflg"
true-label="C" false-label="O" true-label="C" false-label="O"
:disabled="flag1">{{ :disabled="flag1"></c-checkbox>
$t("闭卷")
}}</c-checkbox>
</el-form-item> </el-form-item>
</c-col> </c-col>
</c-col> </c-col>
...@@ -570,57 +568,20 @@ ...@@ -570,57 +568,20 @@
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"; import event from "../event";
import Event from "~/model/Trtset/Event";
export default { export default {
inject: ["root"], inject: ["root"],
props: ["model", "codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess,event],
data() { data() {
return { return {
flag1:true, flag1:true,
flag2:false flag2:false
}; };
}, },
methods: { methods: {},
...Event,
checkDate(date) {
var d = new Date().getDate();
var m = new Date().getMonth();
var y = new Date().getFullYear();
var dd = new Date(this.model.trdgrp.rec.stttendat).getDate();
var mm = new Date(this.model.trdgrp.rec.stttendat).getMonth();
var yy = new Date(this.model.trdgrp.rec.stttendat).getFullYear();
if (d != dd || m != mm || y != yy) {
return true;
} else {
return false;
}
},
change(a){
this.executeRule("clsflg").then((res) => {
if ((res.respCode == SUCCESS)) {
Utils.copyValueFromVO(this.model, res.data);
}
});
if (a = 'X'){
this.model.trtmod.finmod.reptyp = "1"
if(this.flag1 == true){
this.flag1 = false
this.model.mtabut.clsflg = "C"
}
}
},
selChange(b){
if(b == '2'||this.flag2 == false){
this.model.mtabut.clsflg = 'O'
this.flag1 = true
}
},
},
created: function () {}, created: function () {},
}; };
</script> </script>
......
<template> <template>
<div class="eibs-tab"> <div class="eibs-tab">
<c-col :span="24"> <c-col :span="24">
<div class="e-table-wrapper"> <div class="e-table-wrapper">
<el-table <el-table
...@@ -261,22 +260,18 @@ ...@@ -261,22 +260,18 @@
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess"; import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable" import event from "../event"
import Event from "~/model/Trtset/Event"
export default { export default {
inject: ['root'], inject: ['root'],
props:["model","codes"], props: ["model", "codes"],
mixins: [commonProcess], mixins: [commonProcess, event],
data(){ data() {
return { return {}
}
}, },
methods:{...Event}, methods: {},
created:function(){ created: function () {
} }
} }
......
...@@ -10,23 +10,23 @@ ...@@ -10,23 +10,23 @@
size="small" size="small"
:validate-on-rule-change="false" :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="tabClick">
<!--trtset PD000015 Settle --> <!--trtset PD000015 Settle -->
<el-tab-pane label="业务信息" name="ovwp"> <el-tab-pane label="业务信息" name="ovwp">
<c-content> <c-content>
<m-ovwp :model="model" :codes="codes" /> <m-ovwp :model="model" :codes="codes"/>
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<!--limmod PD000001 统一授信 --> <!--limmod PD000001 统一授信 -->
<el-tab-pane label="统一授信" name="limitbody,shisuan"> <el-tab-pane label="统一授信" name="limitbody,shisuan">
<c-content> <c-content>
<div class="eibs-tab"> <div class="eibs-tab">
<el-collapse > <el-collapse>
<el-collapse-item title="统一授信" name="limitbody"> <el-collapse-item title="统一授信" name="limitbody">
<m-limitbody :model="model" :codes="codes" /> <m-limitbody :model="model" :codes="codes"/>
</el-collapse-item> </el-collapse-item>
<el-collapse-item title="试算结果" name="shisuan"> <el-collapse-item title="试算结果" name="shisuan">
<m-shisuan :model="model" :codes="codes" /> <m-shisuan :model="model" :codes="codes"/>
</el-collapse-item> </el-collapse-item>
</el-collapse> </el-collapse>
</div> </div>
...@@ -37,14 +37,14 @@ ...@@ -37,14 +37,14 @@
<el-tab-pane label="表外记账" name="engp"> <el-tab-pane label="表外记账" name="engp">
<c-content> <c-content>
<!-- 表外记账 --> <!-- 表外记账 -->
<m-engp :model="model" :codes="codes" /> <m-engp :model="model" :codes="codes"/>
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<!--PD000027 --> <!--PD000027 -->
<el-tab-pane label="费用/账务" name="setmod"> <el-tab-pane label="费用/账务" name="setmod">
<c-content> <c-content>
<m-setmod :model="model" :codes="codes" /> <m-setmod :model="model" :codes="codes"/>
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
...@@ -52,25 +52,26 @@ ...@@ -52,25 +52,26 @@
<el-tab-pane label="会计分录" name="glentry"> <el-tab-pane label="会计分录" name="glentry">
<c-content> <c-content>
<!-- 会计分录 --> <!-- 会计分录 -->
<m-glentry :model="model" :codes="codes" /> <m-glentry :model="model" :codes="codes"/>
</c-content>'m-glentry': Glentry, </c-content>
<!-- 'm-glentry': Glentry,-->
</el-tab-pane> </el-tab-pane>
<el-tab-pane label="备查/附言" name="addbcb"> <el-tab-pane label="备查/附言" name="addbcb">
<c-content> <c-content>
<m-addbcb :model="model" :codes="codes" /> <m-addbcb :model="model" :codes="codes"/>
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<!--trndoc PD000529 &Messages --> <!--trndoc PD000529 &Messages -->
<el-tab-pane label="报文/面函" name="docpan"> <el-tab-pane label="报文/面函" name="docpan">
<c-content> <c-content>
<m-docpan :model="model" :codes="codes" /> <m-docpan :model="model" :codes="codes"/>
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<!--trndoc PD000546 Attachments --> <!--trndoc PD000546 Attachments -->
<el-tab-pane label="附件信息" name="doctre"> <el-tab-pane label="附件信息" name="doctre">
<c-content> <c-content>
<m-doctre :model="model" :codes="codes" /> <m-doctre :model="model" :codes="codes"/>
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
<!--limmod PD001139 试算结果 --> <!--limmod PD001139 试算结果 -->
...@@ -100,7 +101,6 @@ ...@@ -100,7 +101,6 @@
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable"; import CodeTable from "~/config/CodeTable";
import Trtset from "../model"; import Trtset from "../model";
...@@ -110,6 +110,7 @@ import operationFunc from "~/mixin/operationFunc"; ...@@ -110,6 +110,7 @@ import operationFunc from "~/mixin/operationFunc";
import Ovwp from "./Ovwp"; import Ovwp from "./Ovwp";
import Shisuan from "./Shisuan"; import Shisuan from "./Shisuan";
import Addbcb from "./Addbcb"; import Addbcb from "./Addbcb";
import formRules from '../model/check'
import Limitbody from "~/components/business/limitbody/views"; import Limitbody from "~/components/business/limitbody/views";
import Engp from "~/components/business/engp/views"; import Engp from "~/components/business/engp/views";
...@@ -138,40 +139,20 @@ export default { ...@@ -138,40 +139,20 @@ export default {
root: this, root: this,
}; };
}, },
mixins: [event, operationFunc], // 里面包含了Default、Check等的公共处理 mixins: [operationFunc,event], // 里面包含了Default、Check等的公共处理
data() { data() {
return { return {
tabVal: "ovwp", tabVal: "ovwp",
trnName: "trtset", trnName: "trtset",
model: new Trtset().data, model: new Trtset().data,
rules: null, rules: formRules,
codes: { ...CodeTable }, codes: {...CodeTable},
activeNames: ["engp"], activeNames: ["engp"],
// activeNames1: ["limitbody"],
}; };
}, },
methods: { methods: {},
myTabClick(tab) { created: {},
this.tabClick(tab); mounted() {
/**
* do it yourself
**/
},
},
created: async function () {
// console.log("进入trtset交易");
// 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: "服务请求失败!" });
// }
},
mounted () {
this.init() this.init()
}, },
}; };
......
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