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
eba447eb
Commit
eba447eb
authored
Jun 08, 2023
by
WH
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/settle-test-20230110' into settle-test-20230110
parents
9f36a687
2d31cd82
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
6 deletions
+47
-6
index.js
src/business/litdla/model/index.js
+2
-0
Amep.vue
src/business/litdla/views/Amep.vue
+1
-1
Ovwp1.vue
src/business/litopn/views/Ovwp1.vue
+22
-0
index.js
src/business/trnrel/event/index.js
+19
-5
index.vue
src/views/Layout/components/TagsView/index.vue
+3
-0
No files found.
src/business/litdla/model/index.js
View file @
eba447eb
...
...
@@ -5,6 +5,7 @@ export default class Litdla{
this
.
data
=
{
lidgrp
:{
rec
:{
inr
:
""
,
ownref
:
""
,
// Reference .lidgrp.rec.ownref
nam
:
""
,
// Name .lidgrp.rec.nam
avbby
:
""
,
// Available by .lidgrp.rec.avbby
...
...
@@ -46,6 +47,7 @@ export default class Litdla{
spcbenflg
:
""
,
// Special payment conditions for beneficiary exists .lidgrp.rec.spcbenflg
spcrcbflg
:
""
,
// Special Payment Conditions for specified Bank only .lidgrp.rec.spcrcbflg
stagod
:
""
,
// Goods Code .lidgrp.rec.stagod
branchinr
:
""
,
},
cbs
:{
nom1
:{
...
...
src/business/litdla/views/Amep.vue
View file @
eba447eb
...
...
@@ -14,7 +14,7 @@
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"信用证名义金额"
prop=
"lidgrp.cbs.nom1.cur"
>
<c-input
-currency
disabled
v-model=
"model.lidgrp.cbs.nom1.cur"
maxlength=
"3"
placeholder=
"请输入金额"
></c-input-currency
>
<c-input
disabled
v-model=
"model.lidgrp.cbs.nom1.cur"
maxlength=
"3"
placeholder=
"请输入金额"
></c-input
>
</el-form-item>
</c-col>
...
...
src/business/litopn/views/Ovwp1.vue
View file @
eba447eb
...
...
@@ -645,6 +645,28 @@ export default {
}
},
},
"model.lidgrp.cbs.nom1.cur"
:{
immediate
:
true
,
handler
(
val
,
oldval
){{
if
(
this
.
model
.
lidgrp
.
cbs
.
nom1
.
cur
!=
""
){
this
.
model
.
lidgrp
.
cbs
.
max
.
cur
=
this
.
model
.
lidgrp
.
cbs
.
nom1
.
cur
;
}
// else{
// this.model.lidgrp.cbs.max.cur="";
// }
}}
},
"model.lidgrp.cbs.nom1.amt"
:{
immediate
:
true
,
handler
(
val
,
oldval
){{
if
(
this
.
model
.
lidgrp
.
cbs
.
nom1
.
amt
!=
""
){
this
.
model
.
lidgrp
.
cbs
.
max
.
amt
=
this
.
model
.
lidgrp
.
cbs
.
nom1
.
amt
;
}
// else{
// this.model.lidgrp.cbs.max.amt="0.00";
// }
}}
},
},
computed
:
{
flag1
()
{
...
...
src/business/trnrel/event/index.js
View file @
eba447eb
...
...
@@ -130,23 +130,35 @@ export default {
refuse
:
this
.
onReprow
.
bind
(
this
,
idx
),
}
);
let
Flag
=
JSON
.
parse
(
localStorage
.
getItem
(
'flag_'
+
row
.
inifrm
.
toLowerCase
()))
//判断该交易名是否存在已打开复核页面,如果存在则提示
if
(
Flag
)
{
console
.
log
this
.
$notify
({
title
:
"错误"
,
message
:
row
.
inifrm
.
toLowerCase
()
+
"交易已存在一笔复核"
,
type
:
"error"
,
});
return
}
this
.
$router
.
push
({
// name: 'Review-new' + trnName.charAt(0).toUpperCase() + trnName.substring(1),
path
:
'review-new/'
+
row
[
'inifrm'
].
toLowerCase
(),
query
:
{
trn
:
row
[
'inr'
],
operateId
:
operateId
},
query
:
{
trn
:
row
[
'inr'
],
operateId
:
operateId
,
newFlag
:
row
.
inifrm
.
toLowerCase
()
},
params
:
{
prePageId
:
this
.
model
.
pageId
},
});
sessionStorage
.
setItem
(
`review_
${
row
.
inr
}
`
,
JSON
.
stringify
(
row
))
localStorage
.
setItem
(
`review_
${
row
.
inifrm
.
toLowerCase
()
}
`
,
JSON
.
stringify
(
row
))
//进入复核之后,给该交易的交易码设置flag,用来判断是否存在该交易码的复核页面
localStorage
.
setItem
(
`flag_
${
row
.
inifrm
.
toLowerCase
()}
`
,
true
)
},
async
onRelrow
(
idx
)
{
this
.
$confirm
(
'您确定复核该笔交易?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
,
}).
then
(
async
()
=>
{
// 提交复核之后给该交易码的flag设置为false,用来判断此交易码没有当前页面
localStorage
.
removeItem
(
'flag_'
+
this
.
$route
.
query
.
newFlag
)
let
params
=
{
transName
:
'trnrel'
,
userId
:
window
.
sessionStorage
.
userId
||
'ZL'
,
...
...
@@ -210,6 +222,8 @@ export default {
cancelButtonText
:
'取消'
,
type
:
'warning'
,
}).
then
(
async
()
=>
{
// 退回复核之后给该交易码的flag设置为false,用来判断此交易码没有当前页面
localStorage
.
removeItem
(
'flag_'
+
this
.
$route
.
query
.
newFlag
)
let
params
=
{
trninr
:
this
.
$route
.
query
.
trn
,
transName
:
'trnrel'
,
...
...
src/views/Layout/components/TagsView/index.vue
View file @
eba447eb
...
...
@@ -49,6 +49,7 @@
import
ScrollPane
from
"./ScrollPane"
;
import
path
from
"path"
;
import
{
routes
as
allRoute
}
from
"~/routers"
;
import
{
log
}
from
'util'
;
export
default
{
components
:
{
ScrollPane
},
...
...
@@ -165,6 +166,8 @@ export default {
showCancelButton
:
true
,
type
:
"warning"
,
}).
then
(()
=>
{
// 在当前 点击确定按钮关闭复核页面,清空缓存
localStorage
.
removeItem
(
'flag_'
+
this
.
$route
.
query
.
newFlag
)
this
.
closeTagView
(
view
);
});
},
...
...
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