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
62fb3d89
Commit
62fb3d89
authored
Jun 02, 2023
by
xionglin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
暂存参数修改
parent
2b1b9138
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
12 deletions
+27
-12
index.js
src/business/brtlat/event/index.js
+4
-1
index.js
src/business/brtlat/model/index.js
+0
-6
index.js
src/business/brtsnd/event/index.js
+7
-1
index.js
src/business/litdla/event/index.js
+1
-0
operationFunc.js
src/mixin/operationFunc.js
+15
-4
No files found.
src/business/brtlat/event/index.js
View file @
62fb3d89
...
...
@@ -22,8 +22,11 @@ export default {
...
limitbody
,
...
doctre
,
async
init
()
{
localStorage
.
removeItem
(
'row_'
+
this
.
trnName
)
const
params
=
{
spt
:
JSON
.
parse
(
localStorage
.
getItem
(
'row_'
+
this
.
trnName
))
}
const
res
=
await
Api
.
post
(
'/service/brtlat/init'
,
{
...
params
,
transName
:
this
.
trnName
,
userId
:
window
.
sessionStorage
.
userId
||
'ZL'
,
brdgrp
:{
...
...
src/business/brtlat/model/index.js
View file @
62fb3d89
...
...
@@ -4,12 +4,6 @@ export default class Brtlat{
constructor
()
{
this
.
data
=
{
brtapll1blk
:
""
,
// XMLPanel brtapll1的内置block .brtapll1blk
gidgrp
:{
rec
:{
branchinr
:
""
}
},
gitp
:{},
brdgrp
:{
shp
:{
pts
:
new
Pts
().
data
,
...
...
src/business/brtsnd/event/index.js
View file @
62fb3d89
...
...
@@ -21,8 +21,14 @@ export default {
...
limitbody
,
...
doctre
,
async
init
()
{
localStorage
.
removeItem
(
'row_'
+
this
.
trnName
)
const
params
=
{
spt
:
JSON
.
parse
(
localStorage
.
getItem
(
'row_'
+
this
.
trnName
))
}
if
(
this
.
$route
.
query
.
inr
!=
''
)
{
localStorage
.
removeItem
(
'row_'
+
this
.
trnName
)
}
const
res
=
await
Api
.
post
(
'/service/brtsnd/init'
,
{
...
params
,
transName
:
this
.
trnName
,
userId
:
window
.
sessionStorage
.
userId
||
'ZL'
,
brdgrp
:{
...
...
src/business/litdla/event/index.js
View file @
62fb3d89
...
...
@@ -21,6 +21,7 @@ export default {
...
limitbody
,
...
doctre
,
async
init
()
{
const
params
=
{
spt
:
JSON
.
parse
(
localStorage
.
getItem
(
'row_'
+
this
.
trnName
))
}
...
...
src/mixin/operationFunc.js
View file @
62fb3d89
...
...
@@ -162,10 +162,21 @@ export default {
setglg
:
this
.
model
.
setmod
.
setglg
,
doceot
:
this
.
model
.
docpan
.
doceot
,
spt
:
JSON
.
parse
(
localStorage
.
getItem
(
'row_'
+
this
.
trnName
))
||
{},
gidgrp
:
this
.
model
.
gidgrp
,
gitp
:
this
.
model
.
gitp
,
lidgrp
:
this
.
model
.
lidgrp
,
// branchinr:this.model.gidgrp.rec.branchinr,
}
if
(
this
.
model
.
hasOwnProperty
(
'brdgrp'
)){
this
.
$set
(
params
,
'brdgrp'
,
this
.
model
.
brdgrp
)
}
if
(
this
.
model
.
hasOwnProperty
(
'gidgrp'
)){
this
.
$set
(
params
,
'gidgrp'
,
this
.
model
.
gidgrp
)
}
if
(
this
.
model
.
hasOwnProperty
(
'gitp'
)){
this
.
$set
(
params
,
'gitp'
,
this
.
model
.
gitp
)
}
if
(
this
.
model
.
hasOwnProperty
(
'lidgrp'
)){
this
.
$set
(
params
,
'lidgrp'
,
this
.
model
.
lidgrp
)
}
if
(
this
.
model
.
hasOwnProperty
(
'litp'
)){
this
.
$set
(
params
,
'litp'
,
this
.
model
.
litp
)
}
const
res
=
await
Api
.
post
(
`/service/
${
this
.
trnName
}
/txnHold`
,
params
);
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