Commit a1ca8385 by xionglin

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 92fccfb9 95d01b7b
......@@ -19,42 +19,38 @@ export default {
},
buildCommonData (model, trnName) {
let ptsptaList = [];
if (model.lidgrp.apl.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.lidgrp.apl));
if (model.brdgrp.apl.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.brdgrp.apl));
}
if (model.lidgrp.adv.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.lidgrp.adv));
}
if (model.lidgrp.ben.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.lidgrp.ben));
if (model.brdgrp.ben.pts.extkey) {
ptsptaList.push(this.buildPtspta(model.brdgrp.ben));
}
let dataObj = {
rec: {
objtyp: 'LID',
ownref: model.lidgrp.rec.ownref,
opndat: model.lidgrp.rec.opndat,
expdat: model.lidgrp.rec.expdat,
branchInr: model.lidgrp.rec.branchInr,
hndtyp: model.lidgrp.rec.hndtyp,
gartyp: model.lidgrp.rec.gartyp,
fingua: model.lidgrp.rec.fingua,
segtyp: model.lidgrp.ghd.segtyp,
fromflg: model.lidgrp.rec.fromflg,
othersno: model.lidgrp.rec.othersno,
sndto: model.lidgrp.rec.sndto,
swiftflg: model.gitp.swiftflg,
liduil: model.lidgrp.rec.liduil,
purpos: model.lidgrp.rec.purpos,
revflg: model.lidgrp.rec.revflg,
cnfsta: model.lidgrp.rec.cnfsta,
objtyp: 'lid',
ownref: model.brdgrp.rec.ownref,
opndat: model.brdgrp.rec.opndat,
expdat: model.brdgrp.rec.expdat,
branchInr: model.brdgrp.rec.branchInr,
hndtyp: model.brdgrp.rec.hndtyp,
gartyp: model.brdgrp.rec.gartyp,
fingua: model.brdgrp.rec.fingua,
fromflg: model.brdgrp.rec.fromflg,
othersno: model.brdgrp.rec.othersno,
sndto: model.brdgrp.rec.sndto,
swiftflg: model.brtp.swiftflg,
brduil: model.brdgrp.rec.brduil,
purpos: model.brdgrp.rec.purpos,
revflg: model.brdgrp.rec.revflg,
cnfsta: model.brdgrp.rec.cnfsta,
},
cbsMap: {
MAX: model.lidgrp.cbs.max,
OPN1: model.lidgrp.cbs.opn1,
MAC: model.lidgrp.cbs.mac,
MAC2: model.lidgrp.cbs.mac2,
OPC2: model.lidgrp.cbs.opc2,
CNF: model.lidgrp.cbs.cnf,
MAX: model.brdgrp.cbs.max,
OPN1: model.brdgrp.cbs.opn1,
MAC: model.brdgrp.cbs.mac,
MAC2: model.brdgrp.cbs.mac2,
OPC2: model.brdgrp.cbs.opc2,
CNF: model.brdgrp.cbs.cnf,
},
ptsList: ptsptaList,
transName: trnName,
......@@ -117,9 +113,9 @@ export default {
let params = {
...this.buildCommonData(model, trnName),
rec: {
objtyp: 'LID',
objinr: model.lidgrp.rec.objinr,
ownref: model.lidgrp.rec.ownref,
objtyp: 'GID',
objinr: model.gidgrp.rec.objinr,
ownref: model.gidgrp.rec.ownref,
},
};
return params
......@@ -128,10 +124,10 @@ export default {
let params = {
...this.buildCommonData(model, trnName),
rec: {
objtyp: 'LID',
objinr: model.lidgrp.rec.objinr,
ownref: model.lidgrp.rec.ownref,
swiftflg: model.gitp.swiftflg,
objtyp: 'lid',
objinr: model.brdgrp.rec.objinr,
ownref: model.brdgrp.rec.ownref,
swiftflg: model.brtp.swiftflg,
},
};
return params
......
......@@ -3,73 +3,15 @@ import Pub from '~/components/business/commonModel/index.js';
export default class Brtacp {
constructor() {
this.data = {
gitp: {
swiftflg: '',
},
gidgrp: {
rec: {
branchinr: '',
ownref: '',
},
cbs: {
max: {
cur: '',
amt: '0.00',
},
},
ghd: {
segtyp: '',
},
shp: {
pts: new Pts().data,
},
apc: {
pts: new Pts().data,
},
ctc: {
pts: new Pts().data,
},
bec: {
pts: new Pts().data,
},
ben: {
pts: new Pts().data,
},
iss: {
pts: new Pts().data,
},
adv: {
pts: new Pts().data,
},
apl: {
pts: new Pts().data,
},
con: {
pts: new Pts().data,
},
ctr: {
pts: new Pts().data,
},
atb: {
pts: new Pts().data,
},
avc: {
pts: new Pts().data,
},
cnr: {
pts: new Pts().data,
},
at2: {
brdgrp: {
adv:{
pts: new Pts().data,
},
},
brdgrp: {
prb: {
adrelc: '',
dbfadrblkcn: '',
namelc: '',
pts: new Pts().data,
},
acb: {
adrelc: '',
......@@ -77,13 +19,13 @@ export default class Brtacp {
namelc: '',
pts: new Pts().data,
},
ben: {
apl: {
adrelc: '',
dbfadrblkcn: '',
namelc: '',
pts: new Pts().data,
},
apl: {
ben: {
adrelc: '',
dbfadrblkcn: '',
namelc: '',
......@@ -93,109 +35,53 @@ export default class Brtacp {
chaded: '',
docdisflg: '',
chaadd: '',
docdis: ''
docdis: '',
},
rec: {
inr:'',
branchinr: '',
totcur: '',
ownref: '',
disdat: '',
totamt: '',
nam: '',
docprbrol: '',
rcvdat: '',
advdat: '',
docflg: '',
tenmaxday: '',
docsta: '',
prb: {
modifySet: [],
ptsinr: '',
rol: '',
dbfadrblk: '',
pts: {
inr: '',
objtyp: '',
objinr: '',
rol: '',
},
maps: {}
},
},
matp: {
mattxtlab: '',
totcur: '',
ownref: '',
disdat: '',
totamt: '',
nam: '',
docprbrol: ''
},
cbs: {
opn1: {
cur: '',
amt: ''
},
opn2: {
cur: '',
amt: ''
},
max: {
cur: '',
amt: ''
},
max2: {
amt: ''
},
}
},
brtp: {
furide: '',
matp: {
mattxtlab: ''
opn2: {
cur: ''
},
max: {
cur: '',
amt: ''
},
max2: {
amt: ''
}
}
},
lidgrp: {
ben: {
pts: new Pts().data,
},
apl: {
pts: new Pts().data,
},
adv: {
pts: new Pts().data,
},
},
brtp: {
furide: ''
},
lidgrp: {
rec: {
branchinr: '',
expdat: '',
ownref: '',
inr:'',
expdat: '',
ownref: ''
},
cbs: {
opn1: {
cur: '',
amt: 0
}
},
ghd: {
segtyp: '',
bustyp: '',
remark: '',
},
},
gcdgrp: {
ben: {
pts: new Pts().data,
},
apl: {
pts: new Pts().data,
},
adv: {
pts: new Pts().data,
},
},
setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod,
liaall: new Pub().data.Liaall,
liaccv: new Pub().data.Liaccv,
docpan: new Pub().data.Docpan,
opn1: {
cur: '',
amt: ''
}
}
},
gitp: {
swiftflg: '',
},
setmod: new Pub().data.Setmod,
mtabut: new Pub().data.Mtabut,
trnmod: new Pub().data.Trnmod,
liaall: new Pub().data.Liaall,
liaccv: new Pub().data.Liaccv,
docpan: new Pub().data.Docpan,
};
}
}
......@@ -30,7 +30,7 @@ export default {
userId: window.sessionStorage.userId || 'ZL',
lidgrp:{
rec:{
inr: "00000028",
inr: "00000074",
}
}
});
......
......@@ -261,6 +261,7 @@ export default class Bctset {
tmpref: '',
exrate: '',
custcod: '',
branchinr: '00000014',
},
},
ownextkey: '',
......@@ -320,6 +321,7 @@ export default class Bctset {
tmpref: '',
exrate: '',
custcod: '',
branchinr: '00000014',
},
},
basflg: '',
......@@ -327,7 +329,7 @@ export default class Bctset {
nar754: '',
trdgrp: {
rec: {
branchinr: '',
branchinr: '00000014',
},
},
paypsb: '',
......@@ -374,6 +376,7 @@ export default class Bctset {
nam: '',
actrat: '',
pntref: '',
branchinr: '00000014',
},
dff: {
adrelc: '',
......@@ -406,9 +409,10 @@ export default class Bctset {
},
lidgrp: {
rec: {
branchinr:"00000014",
inr:"00000014",
expdat: '',
ownref: '',
branchinr:"00000014",
},
cbs: {
opn1: {
......
<template>
<div class="eibs-tab">
<el-collapse v-model="activeNames">
<el-collapse-item title="跨境人民币申报" name="cnyp1">
<m-cnyp1 :model="model" :codes="codes" />
</el-collapse-item>
<el-collapse-item title="2122跨境担保登记业务信息" name="voup" v-if="model.cnybop.vouflg == '1'">
<m-voup :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
</div>
</template>
<script>
import event from '../event';
import Cnyp1 from "./Cnyp1";
import Voup from "./Voup";
export default {
components: {
"m-cnyp1": Cnyp1,
"m-voup": Voup,
},
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {
activeNames: ["cnyp1"],
};
},
methods: {},
created: function () {},
};
</script>
<style>
</style>
......@@ -9,9 +9,7 @@
<el-form-item label="订单机构(Tag 52a)" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.ori.pts.extkey'">
<c-fullbox>
<c-input v-model="model.setmod.setglg.setgll[idx].setgrp.ori.pts.extkey" maxlength="16" placeholder="请输入内容"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"></c-input>
@keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"></c-input>
<template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary">
<i class="el-icon-info"></i>
......@@ -39,9 +37,7 @@
<el-form-item label="中间行" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.rcvcor.pts.extkey'">
<c-fullbox>
<c-input v-model="model.setmod.setglg.setgll[idx].setgrp.rcvcor.pts.extkey" maxlength="16" placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"></c-input>
@keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"></c-input>
<template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary">
<i class="el-icon-info"></i>
......@@ -105,9 +101,7 @@
<el-form-item label="账户行(Tag 57a)" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.tri.pts.extkey'">
<c-fullbox>
<c-input v-model="model.setmod.setglg.setgll[idx].setgrp.tri.pts.extkey" maxlength="16" placeholder="请输入账户行"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"></c-input>
@keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"></c-input>
<template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary">
<i class="el-icon-info"></i>
......@@ -135,9 +129,7 @@
<el-form-item label="受益人机构(Tag 58a)" :prop="'setmod.setglg.setgll.' + idx + '.setgrp.bei.pts.extkey'">
<c-fullbox>
<c-input v-model="model.setmod.setglg.setgll[idx].setgrp.bei.pts.extkey" maxlength="16" placeholder="请输入受益人机构"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"></c-input>
@keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"></c-input>
<template slot="footer">
<c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary">
<i class="el-icon-info"></i>
......
......@@ -15,9 +15,7 @@
v-model="model.setmod.setglg.setgll[idx].setgrp.snd756.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog('setmod.setglg.setgll(' + (idx + 1) + ').setgrp.snd756.pts.extkey')
"
@keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"
></c-input>
<template slot="footer">
<c-button
......@@ -65,9 +63,7 @@
v-model="model.setmod.setglg.setgll[idx].setgrp.actser.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"
@keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"
></c-input>
<template slot="footer">
......@@ -116,9 +112,7 @@
v-model="model.setmod.setglg.setgll[idx].setgrp.rcvcor2.pts.extkey"
maxlength="16"
placeholder="请输入"
@keyup.enter.native="
showGridPromptDialog('gcdgrp.prb.pts.extkey')
"
@keyup.enter.native="queryGridEtyPromptDialogData('PRB', 'B')"
></c-input>
<template slot="footer">
......
......@@ -77,7 +77,7 @@
</el-tab-pane>
<!--PD000009 -->
<!-- <el-tab-pane label="申报信息" name="cfactlp,cnyp1">
<!-- <el-tab-pane label="申报信息" name="cnyp">
<c-content>
<m-cnyp :model="model" :codes="codes" />
</c-content>
......
......@@ -193,10 +193,10 @@
<el-form-item
style="width: 100%"
label="单据类型"
prop="seadocflg"
prop="infcon.seadocflg"
>
<c-select
v-model="model.seadocflg"
v-model="model.infcon.seadocflg"
style="width: 100%"
placeholder="请选择单据类型"
:code="codes.docflg"
......@@ -252,10 +252,10 @@
<el-form-item
style="width: 100%"
label="货物类型"
prop="seagodcod"
prop="infcon.seagodcod"
>
<c-select
v-model="model.seagodcod"
v-model="model.infcon.seagodcod"
style="width: 100%"
placeholder="请选择货物类型"
:code="codes.godcod"
......
......@@ -361,7 +361,7 @@ export default {
route: '/business-new/litcan'
},
{
label: '修改',
label: '信用证修改',
route: '/business-new/litame'
},
{
......
......@@ -34,7 +34,7 @@ export default {
ownref: model.lidgrp.rec.ownref,
opndat: model.lidgrp.rec.opndat,
expdat: model.lidgrp.rec.expdat,
branchInr: model.lidgrp.rec.branchInr,
branchinr: model.lidgrp.rec.branchinr,
hndtyp: model.lidgrp.rec.hndtyp,
gartyp: model.lidgrp.rec.gartyp,
fingua: model.lidgrp.rec.fingua,
......
......@@ -30,7 +30,7 @@ export default {
userId: window.sessionStorage.userId || 'ZL',
lidgrp:{
rec:{
inr: "00006833",
inr: this.$route.query.inr
}
}
});
......@@ -170,6 +170,7 @@ export default {
default:
return
}
}
},
onSeainf() {},
},
};
......@@ -16,11 +16,11 @@ export default {
{max: 40,message:'长度不能超过40'}
],
'swiadd.amedat':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'swiadd.amenbr':[
{required: true, message: '必输项'},
{type: 'number', max: 999,message:'只能输入数字,且长度不能超过3'}
{type: 'string', max: 999,message:'只能输入数字,且长度不能超过3'}
],
'litamep.amenbr':[
{required: false, message: '必输项'},
......@@ -37,11 +37,11 @@ export default {
],
'oldlidgrp.rec.nomtop':[
{required: false, message: '必输项'},
{type: 'number',max: 99,message:'只能输入数字,长度不能超过2'}
{type: 'string',max: 99,message:'只能输入数字,长度不能超过2'}
],
'oldlidgrp.rec.nomton':[
{required: false, message: '必输项'},
{type: 'number', max: 99,message:'只能输入数字,长度不能超过2'}
{type: 'string', max: 99,message:'只能输入数字,长度不能超过2'}
],
'oldlidgrp.cbs.max.cur':[
{type: 'string', required: false, message: '必输项'},
......@@ -67,11 +67,11 @@ export default {
],
'swiadd.newnomtop':[
{required: false, message: '必输项'},
{type: 'number', max: 99,message:'只能输入数字,长度不能超过2'}
{type: 'string', max: 99,message:'只能输入数字,长度不能超过2'}
],
'swiadd.newnomton':[
{ required: false, message: '必输项'},
{type: 'number', max: 99,message:'只能输入数字,长度不能超过2'}
{type: 'string', max: 99,message:'只能输入数字,长度不能超过2'}
],
'litamep.maxcur':[
{type: 'string', required: false, message: '必输项'},
......@@ -82,16 +82,16 @@ export default {
{max: 18,message:'整数位不能超过15位'},
],
'oldlidgrp.rec.expdat':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'oldlidgrp.rec.shpdat':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'swiadd.newexpdat':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'swiadd.newshpdat':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'oldlidgrp.rec.prepers18':[
{ required: false, message: '必输项'},
......@@ -99,7 +99,7 @@ export default {
],
'swiadd.prepers18':[
{required: false, message: '必输项'},
{type: 'number', max: 999,message:'只能输入数字,长度不能超过3'}
{type: 'string', max: 999,message:'只能输入数字,长度不能超过3'}
],
'oldlidgrp.blk.preper':[
{type: 'string', required: true, message: '必输项'},
......@@ -189,11 +189,11 @@ export default {
],
'lidgrp.rec.nomtop':[
{required: false, message: '必输项'},
{type: 'number', max: 99,message:'只能输入数字,长度不能超过2'}
{type: 'string', max: 99,message:'只能输入数字,长度不能超过2'}
],
'lidgrp.rec.nomton':[
{ required: false, message: '必输项'},
{type: 'number', max: 99,message:'只能输入数字,长度不能超过2'}
{type: 'string', max: 99,message:'只能输入数字,长度不能超过2'}
],
'lidgrp.apl.adrelc':[
{type: 'string', required: true, message: '必输项'},
......@@ -221,10 +221,10 @@ export default {
{max: 3,message:'长度不能超过3'}
],
'lidgrp.rec.opndat':[
{type: 'date', required: true, message: '输入正确的日期'}
{type: 'string', required: true, message: '输入正确的日期'}
],
'lidgrp.rec.preadvdt':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'lidgrp.adv.namelc':[
{type: 'string', required: true, message: '必输项'},
......@@ -239,14 +239,14 @@ export default {
{max: 35,message:'长度不能超过35'}
],
'lidgrp.rec.shpdat':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'lidgrp.adv.adrelc':[
{type: 'string', required: true, message: '必输项'},
{max: 35,message:'长度不能超过35'}
],
'lidgrp.rec.expdat':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'lidgrp.rec.expplc':[
{type: 'string', required: false, message: '必输项'},
......@@ -402,7 +402,7 @@ export default {
],
'lidgrp.rec.tenmaxday':[
{ required: false, message: '必输项'},
{type: 'number', max: 999,message:'只能输入数字,长度不能超过3'}
{type: 'string', max: 999,message:'只能输入数字,长度不能超过3'}
],
'lidgrp.rec.porloa':[
{type: 'string', required: false, message: '必输项'},
......@@ -641,7 +641,7 @@ export default {
{max: 30,message:'长度不能超过30'}
],
'bcbdat':[
{type: 'date', required: false, message: '输入正确的日期'}
{type: 'string', required: false, message: '输入正确的日期'}
],
'ameadvrmk':[
{type: 'string', required: false, message: '必输项'},
......@@ -660,7 +660,7 @@ export default {
// {max: 60,message:'长度不能超过60','trigger': 'blur'}
// ],
// 'mtabut.coninf.conexedat':[
// {type: 'date', required: false, message: '输入正确的日期'}
// {type: 'string', required: false, message: '输入正确的日期'}
// ],
// 'mtabut.coninf.usr.extkey':[
// {type: 'string', required: false, message: '必输项'},
......
......@@ -65,9 +65,9 @@ export default class Litame {
},
rec: {
expdat: '',
nomton: 0,
nomton: '',
shpdat: '',
nomtop: 0,
nomtop: '',
prepertxts18: '',
prepers18: ''
},
......@@ -143,7 +143,8 @@ export default class Litame {
regref: '',
porloa: '',
apprultxt: '',
branchInr:'00000047',
branchinr:'',
inr:''
},
adv: {
pts: new Pts().data,
......@@ -189,29 +190,6 @@ export default class Litame {
pts: new Pts().data,
}
},
liaall: {
limmod: {
ownref: '',
dggrd: '',
limpts: {
wrk: {
pts: new Pts().data,
},
oth: {
pts: new Pts().data,
},
pfcod1: '',
pfcod2: '',
nonrevflg1: '',
nonrevflg2: ''
},
comamt: '',
ccvamt: '',
limgrd: '',
lmegrd: '',
tygrd: ''
}
},
swiadd: {
trnchato: '',
newnomtop: '',
......
......@@ -204,7 +204,6 @@ export default {
},
},
methods: {
...Event,
open(val) {
if (val === '' && !(this.model.lidgrp.blk.lcrdoc == '')) {
this.$confirm(
......
......@@ -114,8 +114,8 @@ import Docpre from "./Docpre";
import Srmp from "./Srmp";
import Engp from "~/components/business/engp/views";
import Coninfp from "~/components/business/coninfp/views";
import Doctre from "~/views/Public/Doctre";
import Limitbody from "~/views/Public/Limitbody"
import Doctre from "~/components/business/doctre/views";
import Limitbody from "~/components/business/limitbody/views"
import Setmod from "~/components/business/setmod/views";
import Glentry from "~/components/business/glentry/views";
import Docpan from "~/components/business/docpan/views";
......
......@@ -137,6 +137,8 @@ export default {
params: { prePageId: this.model.pageId },
});
localStorage.setItem(`review_${row.inifrm.toLowerCase()}`, JSON.stringify(row))
},
async onRelrow(idx) {
......
......@@ -69,15 +69,15 @@ export default {
};
},
methods: {
getType(idx) {
for (let i = 0; i < this.codes.doceotCortyp.length; i++) {
const c = this.codes.doceotCortyp[i];
if (this.model.trnmod.trndoc.doceot[idx].cortyp === c.value) {
return c.label;
}
}
return '';
},
// getType(idx) {
// for (let i = 0; i < this.codes.doceotCortyp.length; i++) {
// const c = this.codes.doceotCortyp[i];
// if (this.model.trnmod.trndoc.doceot[idx].cortyp === c.value) {
// return c.label;
// }
// }
// return '';
// },
getNow() {
return moment().format('yyyy-MM-DD');
},
......@@ -141,27 +141,7 @@ export default {
}
},
},
watch: {
// 'model.trnmod.trndoc.doceot': {
// handler(val, oldVal) {
// var arr = [];
// let k = 0;
// for (let i = 0; i < val.length; i++) {
// if (val[i].role != '') {
// arr[k++] = val[i];
// }
// }
// this.data1 = arr;
// },
// immediate: true,
// },
model: {
handler (newVal) {
console.log('model', newVal)
},
immediate: true
}
},
watch: {},
created () {
console.log('====11', this.model)
},
......
<template>
<ReviewWrapper>
<Litdck></Litdck>
</ReviewWrapper>
</template>
<script>
import Litdck from "~/business/litdck/views";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewLitdck",
components: { ReviewWrapper, Litdck },
created() {},
mounted() {},
};
</script>
<style></style>
const Business = [
{ path: 'gitopn', component: () => import('~/review/gitopn/views'), name: 'gitopn', meta: { title: '复核-Gitopn' } },
{ path: 'litopn', component: () => import('~/review/ReviewLitopn.vue'), name: 'litopn', meta: { title: '复核-Litopn' } },
{ path: 'litdck', component: () => import('~/review/ReviewLitdck.vue'), name: 'litdck', meta: { title: '复核-Litdck' } },
]
export default Business
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