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
6139e7c2
Commit
6139e7c2
authored
Oct 31, 2023
by
lixinyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
brtset修改
parent
734ce89f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
6 deletions
+36
-6
buildCommons.js
src/business/brtset/event/buildCommons.js
+2
-1
index.js
src/business/brtset/event/index.js
+4
-0
index.js
src/business/brtset/model/index.js
+3
-3
Utlp.vue
src/business/brtset/views/Utlp.vue
+27
-2
No files found.
src/business/brtset/event/buildCommons.js
View file @
6139e7c2
...
...
@@ -79,7 +79,8 @@ export default {
},
ptsList
:
ptsptaList
,
transName
:
trnName
,
userId
:
window
.
sessionStorage
.
userId
?
window
.
sessionStorage
.
userId
:
'ZL'
userId
:
window
.
sessionStorage
.
userId
?
window
.
sessionStorage
.
userId
:
'ZL'
,
setglg
:
model
.
setmod
.
setglg
,
};
return
dataObj
},
...
...
src/business/brtset/event/index.js
View file @
6139e7c2
...
...
@@ -61,6 +61,10 @@ export default {
}
})
},
async
maxAmtChange
(){
let
engpRequest
=
buildFn
.
buildEngp
(
this
.
model
,
this
.
trnName
);
this
.
processLiaall
(
engpRequest
);
},
async
tabClick
(
tab
)
{
if
(
this
.
isInDisplay
)
{
return
;
...
...
src/business/brtset/model/index.js
View file @
6139e7c2
...
...
@@ -38,7 +38,7 @@ export default class Bctset {
cbs
:
{
opn1
:
{
cur
:
''
,
amt
:
''
,
amt
:
'
0.00
'
,
},
opn2
:
{
cur
:
''
,
...
...
@@ -127,7 +127,7 @@ export default class Bctset {
},
aamset
:
{
utlamt
:
''
,
utlamt2
:
''
,
utlamt2
:
'
0.00
'
,
},
trtcre
:
{
trtmod
:
{
...
...
@@ -428,7 +428,7 @@ export default class Bctset {
cbs
:
{
opn1
:
{
cur
:
''
,
amt
:
''
,
amt
:
'
0.00
'
,
},
},
},
...
...
src/business/brtset/views/Utlp.vue
View file @
6139e7c2
...
...
@@ -101,6 +101,7 @@
v-model=
"model.brdgrp.cbs.opn1.cur"
maxlength=
"3"
placeholder=
"请输入单据余额币种"
:code=
"codes.cur"
disabled
></c-input>
</el-form-item>
...
...
@@ -226,9 +227,10 @@
<c-col
:span=
"13"
>
<el-form-item
label=
"应付金额"
prop=
"setmod.doccur"
>
<c-input
v-model=
"
model.setmod.
doccur"
v-model=
"doccur"
maxlength=
"3"
placeholder=
"请选择币种"
:code=
"codes.cur"
disabled
></c-input>
</el-form-item>
...
...
@@ -249,6 +251,7 @@
v-model=
"model.setmod.doccur"
maxlength=
"3"
placeholder=
"请选择币种"
:code=
"codes.cur"
disabled
></c-input>
</el-form-item>
...
...
@@ -284,6 +287,7 @@
<c-input
v-model=
"model.aamset.utlamt"
placeholder=
"请输入金额"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -307,6 +311,7 @@
<c-input
v-model=
"model.aamset.utlamt2"
placeholder=
"请输入金额"
disabled
></c-input>
</el-form-item>
</c-col>
...
...
@@ -484,6 +489,7 @@
v-model=
"model.lidgrp.cbs.opn1.cur"
maxlength=
"3"
placeholder=
"请输入币种"
:code=
"codes.cur"
disabled
></c-input>
</el-form-item>
...
...
@@ -581,6 +587,7 @@
v-model=
"model.setmod.doccur"
maxlength=
"3"
placeholder=
"请输入币种"
:code=
"codes.cur"
disabled
></c-input>
</el-form-item>
...
...
@@ -692,6 +699,7 @@ export default {
return
{
flag4
:
true
,
flag3
:
true
,
trnName
:
"brtset"
,
cmtflg
:
[
{
label
:
"代理行模式"
,
value
:
"C"
},
{
label
:
"其他"
,
value
:
"O"
},
...
...
@@ -712,6 +720,19 @@ export default {
},
created
:
function
()
{},
watch
:
{
"model.setmod.docamt"
:{
immediate
:
true
,
handler
(
val
,
oldVal
)
{
this
.
model
.
brdgrp
.
cbs
.
max
.
amt
=
this
.
model
.
setmod
.
docamt
;
this
.
model
.
aamset
.
utlamt
=
this
.
model
.
setmod
.
docamt
-
this
.
model
.
aamset
.
utlamt2
;
},
},
"model.brdgrp.cbs.max.amt"
:{
immediate
:
true
,
handler
(
val
,
oldVal
)
{
this
.
maxAmtChange
();
},
},
"model.brtp.ischktyp"
:
{
immediate
:
true
,
handler
(
val
,
oldVal
)
{
...
...
@@ -749,7 +770,11 @@ export default {
opn2cur
(){
this
.
model
.
brdgrp
.
cbs
.
opn2
.
cur
=
this
.
model
.
brdgrp
.
cbs
.
max
.
cur
return
this
.
model
.
brdgrp
.
cbs
.
opn2
.
cur
}
},
doccur
(){
this
.
model
.
setmod
.
doccur
=
this
.
model
.
brdgrp
.
cbs
.
max
.
cur
return
this
.
model
.
setmod
.
doccur
}
,
}
};
</
script
>
...
...
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