Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fukai
vue-gjjs
Commits
02c7e357
Commit
02c7e357
authored
Apr 20, 2023
by
WF1020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gitame初始化修改
parent
b6ae1255
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
324 additions
and
8 deletions
+324
-8
buildCommons.js
src/business/gitame/event/buildCommons.js
+148
-0
index.js
src/business/gitame/event/index.js
+159
-2
index.js
src/business/gitame/model/index.js
+13
-6
index.vue
src/business/gitame/views/index.vue
+3
-0
operationFunc.js
src/mixin/operationFunc.js
+1
-0
No files found.
src/business/gitame/event/buildCommons.js
0 → 100644
View file @
02c7e357
export
default
{
buildPtspta
(
ptsptaObj
)
{
let
pts
=
ptsptaObj
.
pts
;
let
ptspta
=
{
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
};
return
ptspta
;
},
buildCommonData
(
model
,
trnName
)
{
let
ptsptaList
=
[];
if
(
model
.
gidgrp
.
apl
.
pts
.
extkey
)
{
ptsptaList
.
push
(
this
.
buildPtspta
(
model
.
gidgrp
.
apl
));
}
if
(
model
.
gidgrp
.
adv
.
pts
.
extkey
)
{
ptsptaList
.
push
(
this
.
buildPtspta
(
model
.
gidgrp
.
adv
));
}
if
(
model
.
gidgrp
.
ben
.
pts
.
extkey
)
{
ptsptaList
.
push
(
this
.
buildPtspta
(
model
.
gidgrp
.
ben
));
}
let
dataObj
=
{
rec
:
{
objtyp
:
'GID'
,
ownref
:
model
.
gidgrp
.
rec
.
ownref
,
opndat
:
model
.
gidgrp
.
rec
.
opndat
,
expdat
:
model
.
gidgrp
.
rec
.
expdat
,
branchInr
:
model
.
gidgrp
.
rec
.
branchInr
,
hndtyp
:
model
.
gidgrp
.
rec
.
hndtyp
,
gartyp
:
model
.
gidgrp
.
rec
.
gartyp
,
fingua
:
model
.
gidgrp
.
rec
.
fingua
,
segtyp
:
model
.
gidgrp
.
ghd
.
segtyp
,
fromflg
:
model
.
gidgrp
.
rec
.
fromflg
,
othersno
:
model
.
gidgrp
.
rec
.
othersno
,
sndto
:
model
.
gidgrp
.
rec
.
sndto
,
swiftflg
:
model
.
gitp
.
swiftflg
,
giduil
:
model
.
gidgrp
.
rec
.
giduil
,
purpos
:
model
.
gidgrp
.
rec
.
purpos
,
revflg
:
model
.
gidgrp
.
rec
.
revflg
,
cnfsta
:
model
.
gidgrp
.
rec
.
cnfsta
,
},
cbsMap
:
{
MAX
:
model
.
gidgrp
.
cbs
.
max
,
OPN1
:
model
.
gidgrp
.
cbs
.
opn1
,
MAC
:
model
.
gidgrp
.
cbs
.
mac
,
MAC2
:
model
.
gidgrp
.
cbs
.
mac2
,
OPC2
:
model
.
gidgrp
.
cbs
.
opc2
,
CNF
:
model
.
gidgrp
.
cbs
.
cnf
,
},
ptsList
:
ptsptaList
,
transName
:
trnName
,
userId
:
window
.
sessionStorage
.
userId
?
window
.
sessionStorage
.
userId
:
'ZL'
};
return
dataObj
},
buildSetfeg
(
model
,
trnName
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
liaall
:
model
.
liaall
,
liaccv
:
model
.
liaccv
,
doceot
:
model
.
trnmod
.
trndoc
.
doceot
,
};
return
params
},
buildSetglg
(
model
,
trnName
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
setfeg
:
model
.
setmod
.
setfeg
,
liaall
:
model
.
liaall
,
liaccv
:
model
.
liaccv
,
};
return
params
},
buildGlentry
(
model
,
trnName
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
liaallg
:
model
.
liaall
.
liaallg
,
setfog
:
model
.
setmod
.
setfog
,
setfeg
:
model
.
setmod
.
setfeg
,
setglg
:
model
.
setmod
.
setglg
,
};
return
params
},
buildEngp
(
model
,
trnName
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
liaallg
:
model
.
liaall
.
liaallg
,
};
return
params
},
buildDocpan
(
model
,
trnName
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
};
return
params
},
buildCcvpan
(
model
,
trnName
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
liaccvg
:
model
.
liaccv
.
liaccvg
,
oldamt
:
model
.
liaccv
.
oldamt
,
chgamt
:
model
.
liaccv
.
chgamt
,
concur
:
model
.
liaccv
.
concur
,
};
return
params
},
buildLimitbody
(
model
,
trnName
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
rec
:
{
objtyp
:
'GID'
,
objinr
:
model
.
gidgrp
.
rec
.
objinr
,
ownref
:
model
.
gidgrp
.
rec
.
ownref
,
},
};
return
params
},
buildDoctre
(
model
,
trnName
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
rec
:
{
objtyp
:
'GID'
,
objinr
:
model
.
gidgrp
.
rec
.
objinr
,
ownref
:
model
.
gidgrp
.
rec
.
ownref
,
swiftflg
:
model
.
gitp
.
swiftflg
,
},
};
return
params
},
// 公共组件setmod中dsp字段改变,触发联动时候的入参
buildSetgllAccts
(
model
,
trnName
,
setglg
)
{
let
params
=
{
...
this
.
buildCommonData
(
model
,
trnName
),
setglg
};
return
params
}
}
\ No newline at end of file
src/business/gitame/event/index.js
View file @
02c7e357
import
Api
from
"~/service/Api"
import
Api
from
"~/service/Api"
import
commonFunctions
from
'~/mixin/commonFunctions.js'
;
import
buildFn
from
'./buildCommons.js'
;
import
setmod
from
'~/components/business/setmod/event'
;
import
glentry
from
'~/components/business/glentry/event'
;
import
engp
from
'~/components/business/engp/event'
;
import
docpan
from
'~/components/business/docpan/event'
;
import
ccvpan
from
'~/components/business/ccvpan/event'
;
import
limitbody
from
'~/components/business/limitbody/event'
;
import
doctre
from
'~/components/business/doctre/event'
;
import
Utils
from
"~/utils"
import
Utils
from
"~/utils"
export
default
{
export
default
{
mixins
:
[
commonFunctions
],
methods
:
{
methods
:
{
...
setmod
,
...
glentry
,
...
engp
,
...
docpan
,
...
ccvpan
,
...
limitbody
,
...
doctre
,
// 获取gitopn弹框表格数据
// 获取gitopn弹框表格数据
// async init () {
// const params = {
// spt: JSON.parse(localStorage.getItem('row_' + this.trnName))
// }
// const res = await Api.post('/service/gitame/init', {
// ...params,
// transName: this.trnName,
// userId: window.sessionStorage.userId || 'ZL',
// });
// if (!res.data) {
// return
// }
// this.copyValueFromVoData(this.model, res.data)
// this.copyValueFromVoData(this.model.setmod.setfeg, res.data.setfeg)
// this.copyValueFromVoData(this.model.setmod.setfog, res.data.setfog)
// this.copyValueFromVoData(this.model.setmod.setglg, res.data.setglg)
// },
async
init
()
{
const
res
=
await
Api
.
post
(
'/service/gitame/init'
,
{
transName
:
this
.
trnName
,
userId
:
window
.
sessionStorage
.
userId
||
'ZL'
,
// gidInr: this.$route.query.inr
gidInr
:
'00000661'
});
if
(
!
res
.
data
)
{
return
}
this
.
copyValueFromVoData
(
this
.
model
,
res
.
data
)
this
.
copyValueFromVoData
(
this
.
model
.
setmod
.
setfeg
,
res
.
data
.
setfeg
)
this
.
copyValueFromVoData
(
this
.
model
.
setmod
.
setfog
,
res
.
data
.
setfog
)
this
.
copyValueFromVoData
(
this
.
model
.
setmod
.
setglg
,
res
.
data
.
setglg
)
},
// 兼容处理在前端model中定义了字段,后端返回的数据中不存在字段的问题
copyValueFromVoData
(
model
,
data
)
{
let
keysList
=
Object
.
keys
(
model
)
keysList
.
map
((
key
)
=>
{
if
(
data
[
key
])
{
if
(
Utils
.
typeOf
(
model
[
key
])
===
'Object'
)
{
this
.
copyValueFromVoData
(
model
[
key
],
data
[
key
])
}
else
{
this
.
$set
(
model
,
key
,
data
[
key
])
}
}
})
},
async
tabClick
(
tab
)
{
if
(
this
.
isInDisplay
)
{
return
;
}
let
name
=
tab
.
name
;
switch
(
name
)
{
case
'ccvpan'
:
let
ccvpanRequest
=
buildFn
.
buildCcvpan
(
this
.
model
,
this
.
trnName
);
this
.
processLiaccv
(
ccvpanRequest
);
break
;
case
'engp'
:
let
engpRequest
=
buildFn
.
buildEngp
(
this
.
model
,
this
.
trnName
);
this
.
processLiaall
(
engpRequest
);
break
;
case
'setpan'
:
let
setfegRequest
=
buildFn
.
buildSetfeg
(
this
.
model
,
this
.
trnName
);
// 此处利用回调是为了等setfeg的接口调用完成后才去获取setglg参数,由于setglg参数依赖于setfeg函数的返回值
this
.
processSetpan
(
setfegRequest
,
()
=>
{
return
buildFn
.
buildSetglg
(
this
.
model
,
this
.
trnName
);
});
break
;
case
'docpan'
:
let
docpanRequest
=
buildFn
.
buildDocpan
(
this
.
model
,
this
.
trnName
);
this
.
processTrndoc
(
docpanRequest
);
break
;
case
'glepan'
:
let
glentryRequest
=
buildFn
.
buildGlentry
(
this
.
model
,
this
.
trnName
);
this
.
processGlentry
(
glentryRequest
);
break
;
case
'limitbody'
:
let
limitbodyRequest
=
buildFn
.
buildLimitbody
(
this
.
model
,
this
.
trnName
);
this
.
processLimitbody
(
limitbodyRequest
);
break
;
case
'doctre'
:
let
doctreRequest
=
buildFn
.
buildDoctre
(
this
.
model
,
this
.
trnName
);
this
.
processDoctre
(
doctreRequest
);
break
;
default
:
return
;
}
},
// 点击获取按钮拉取当前key字段下的表单数据
queryFormData
(
key
)
{
console
.
log
(
key
);
},
// 业务信息=》基本信息=》保函编号-----获取保函编号
async
queryOwnref
()
{
let
params
=
{
ptainr
:
this
.
model
.
gidgrp
.
apl
.
pts
.
ptainr
,
businessType
:
'LG'
,
tbl
:
'LG'
,
};
const
loading
=
this
.
loading
();
let
res
=
await
Api
.
post
(
'/service/gitopn/getOwnRef'
,
params
);
if
(
res
.
respCode
==
SUCCESS
)
{
loading
.
close
();
this
.
model
.
gidgrp
.
rec
.
ownref
=
res
.
data
;
}
},
async
queryGridEtyPromptDialogData
(
type
,
ptytyp
)
{
async
queryGridEtyPromptDialogData
(
type
,
ptytyp
)
{
let
params
=
{
let
params
=
{
userId
:
window
.
sessionStorage
.
userId
||
'ZL'
,
userId
:
window
.
sessionStorage
.
userId
||
'ZL'
,
...
@@ -27,5 +148,42 @@ export default {
...
@@ -27,5 +148,42 @@ export default {
this
.
$set
(
this
.
model
.
gidgrp
,
row
.
role
.
toLowerCase
(),
res
.
data
);
this
.
$set
(
this
.
model
.
gidgrp
,
row
.
role
.
toLowerCase
(),
res
.
data
);
}
}
},
},
// 是否SWIFT格式修改--联动保函开立类型
handleChangeSwiftflg
()
{
this
.
queryHndtypCodeTableList
(
this
.
root
.
trnName
);
},
// 支出目的修改--联动保函开立类型
handleChangePurpos
()
{
this
.
queryHndtypCodeTableList
(
this
.
root
.
trnName
);
},
buildLiaccv
()
{
let
params
=
{
...
buildFn
.
buildCommonData
(
this
.
model
,
this
.
trnName
),
liaccvg
:
this
.
model
.
liaccv
.
liaccvg
,
oldamt
:
this
.
model
.
liaccv
.
oldamt
,
chgamt
:
this
.
model
.
liaccv
.
chgamt
,
concur
:
this
.
model
.
liaccv
.
concur
,
};
return
params
},
// 公共组件setmod处理方式改变触发联动
changeSetmodModel
(
emitParams
)
{
let
reqParams
=
{}
switch
(
emitParams
.
code
)
{
case
'processMethods'
:
reqParams
=
buildFn
.
buildSetglg
(
this
.
model
,
this
.
trnName
);
this
.
calcPayDetail
(
reqParams
)
break
case
'changeDsp'
:
let
index
=
emitParams
.
index
;
let
setglgRequest
=
buildFn
.
buildSetglg
(
this
.
model
,
this
.
trnName
);
setglgRequest
.
setglg
=
{
setgll
:
emitParams
.
list
};
this
.
setgllAccts
(
setglgRequest
,
index
);
break
default
:
return
}
}
}
}
}
}
\ No newline at end of file
src/business/gitame/model/index.js
View file @
02c7e357
...
@@ -125,6 +125,10 @@ export default class Gitame {
...
@@ -125,6 +125,10 @@ export default class Gitame {
cur
:
''
,
cur
:
''
,
amt
:
''
,
amt
:
''
,
},
},
max2
:
{
cur
:
''
,
amt
:
''
,
},
opc2
:
{
opc2
:
{
cur
:
''
,
cur
:
''
,
amt
:
''
,
amt
:
''
,
...
@@ -161,9 +165,6 @@ export default class Gitame {
...
@@ -161,9 +165,6 @@ export default class Gitame {
benefi
:
''
,
benefi
:
''
,
},
},
},
},
gitamep
:
{
prtflg
:
''
,
},
gitp
:
{
gitp
:
{
dzbhflg
:
''
,
dzbhflg
:
''
,
swiftflg
:
''
,
swiftflg
:
''
,
...
@@ -226,9 +227,10 @@ export default class Gitame {
...
@@ -226,9 +227,10 @@ export default class Gitame {
gitamecho
:
''
,
gitamecho
:
''
,
},
},
gitamep
:
{
gitamep
:
{
amebut
c
:
{
amebut
:
{
chkast
:
''
,
chkast
:
''
,
},
},
prtflg
:
''
,
ametxtflgc
:
''
,
ametxtflgc
:
''
,
oldmaccur
:
''
,
oldmaccur
:
''
,
ametxtc
:
''
,
ametxtc
:
''
,
...
@@ -243,8 +245,13 @@ export default class Gitame {
...
@@ -243,8 +245,13 @@ export default class Gitame {
exptyp
:
''
,
exptyp
:
''
,
liatypc
:
''
,
liatypc
:
''
,
liadat
:
''
,
liadat
:
''
,
},
}
cbs
:
{
max
:
{
cur
:
''
,
amt
:
''
,
},
},
},
},
setmod
:
new
Pub
().
data
.
Setmod
,
setmod
:
new
Pub
().
data
.
Setmod
,
mtabut
:
new
Pub
().
data
.
Mtabut
,
mtabut
:
new
Pub
().
data
.
Mtabut
,
...
...
src/business/gitame/views/index.vue
View file @
02c7e357
...
@@ -179,6 +179,9 @@ export default {
...
@@ -179,6 +179,9 @@ export default {
};
};
},
},
methods
:
{
},
methods
:
{
},
mounted
()
{
this
.
init
()
},
};
};
</
script
>
</
script
>
<
style
>
<
style
>
...
...
src/mixin/operationFunc.js
View file @
02c7e357
...
@@ -165,6 +165,7 @@ export default {
...
@@ -165,6 +165,7 @@ export default {
gidgrp
:
this
.
model
.
gidgrp
,
gidgrp
:
this
.
model
.
gidgrp
,
gitp
:
this
.
model
.
gitp
,
gitp
:
this
.
model
.
gitp
,
lidgrp
:
this
.
model
.
lidgrp
,
lidgrp
:
this
.
model
.
lidgrp
,
branchinr
:
this
.
model
.
gidgrp
.
rec
.
branchinr
,
}
}
const
res
=
await
Api
.
post
(
`/service/
${
this
.
trnName
}
/txnHold`
,
params
);
const
res
=
await
Api
.
post
(
`/service/
${
this
.
trnName
}
/txnHold`
,
params
);
if
(
res
.
respCode
===
SUCCESS
)
{
if
(
res
.
respCode
===
SUCCESS
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment