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
d0319fbd
Commit
d0319fbd
authored
Aug 08, 2023
by
WH
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
brtdck
parent
04ad8eda
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
38 deletions
+43
-38
Brtdckp.vue
src/business/brtdck/views/Brtdckp.vue
+43
-38
No files found.
src/business/brtdck/views/Brtdckp.vue
View file @
d0319fbd
...
...
@@ -269,7 +269,7 @@
<c-col
:span=
"13"
>
<el-form-item
label=
"提取附加金额"
prop=
"brdgrp.cbs.opn2.cur"
>
<c-select
v-model=
"model.brdgrp.cbs.opn2.
cur"
v-model=
"opn2
cur"
style=
"width: 100%"
placeholder=
"请选择币种"
:code=
"codes.curtxt1"
...
...
@@ -404,7 +404,8 @@
style=
"float: right; text-align: center"
v-model=
"model.brdgrp.rec.dscinsflg"
:disabled=
"model.brdgrp.blk.docdisflg!=''"
>
输入单据、不符点、指示和运输信息
</c-checkbox
>
输入单据、不符点、指示和运输信息
</c-checkbox
>
</c-col>
<c-col
:span=
"24"
>
...
...
@@ -565,60 +566,64 @@ export default {
mixins
:
[
event
],
data
()
{
return
{
flag
:
true
,
flag2
:
true
,
flag3
:
true
,
flag4
:
true
,
flag
:
true
,
flag2
:
true
,
flag3
:
true
,
flag4
:
true
,
};
},
watch
:{
"model.brdgrp.rec.docprbrol"
:
function
(){
if
(
this
.
model
.
brdgrp
.
rec
.
docprbrol
==
'ADV'
){
this
.
flag
=
true
;
}
else
if
(
this
.
model
.
brdgrp
.
rec
.
docprbrol
==
'BEN'
){
this
.
flag
=
true
;
}
else
if
(
this
.
model
.
brdgrp
.
rec
.
docprbrol
==
'PRB'
){
this
.
flag
=
false
;
watch
:
{
"model.brdgrp.rec.docprbrol"
:
function
()
{
if
(
this
.
model
.
brdgrp
.
rec
.
docprbrol
==
'ADV'
)
{
this
.
flag
=
true
;
}
else
if
(
this
.
model
.
brdgrp
.
rec
.
docprbrol
==
'BEN'
)
{
this
.
flag
=
true
;
}
else
if
(
this
.
model
.
brdgrp
.
rec
.
docprbrol
==
'PRB'
)
{
this
.
flag
=
false
;
}
},
"model.brdgrp.prb.pts.extkey"
:
{
immediate
:
true
,
handler
(
val
,
oldVal
)
{
if
(
this
.
model
.
brdgrp
.
prb
.
pts
.
extkey
!=
''
)
{
this
.
flag2
=
true
;
}
else
{
this
.
flag2
=
false
;
"model.brdgrp.prb.pts.extkey"
:
{
immediate
:
true
,
handler
(
val
,
oldVal
)
{
if
(
this
.
model
.
brdgrp
.
prb
.
pts
.
extkey
!=
''
)
{
this
.
flag2
=
true
;
}
else
{
this
.
flag2
=
false
;
}
}
},
"model.brdgrp.rec.payrol"
:
function
(){
if
(
this
.
model
.
brdgrp
.
rec
.
payrol
==
'APL'
){
this
.
flag4
=
true
;
}
else
if
(
this
.
model
.
brdgrp
.
rec
.
payrol
==
'OTH'
){
this
.
flag4
=
false
;
"model.brdgrp.rec.payrol"
:
function
()
{
if
(
this
.
model
.
brdgrp
.
rec
.
payrol
==
'APL'
)
{
this
.
flag4
=
true
;
}
else
if
(
this
.
model
.
brdgrp
.
rec
.
payrol
==
'OTH'
)
{
this
.
flag4
=
false
;
}
},
"model.brtp.oth.pts.extkey"
:
{
immediate
:
true
,
handler
(
val
,
oldVal
)
{
if
(
this
.
model
.
brtp
.
oth
.
pts
.
extkey
!=
''
)
{
this
.
flag3
=
true
;
}
else
{
this
.
flag3
=
false
;
"model.brtp.oth.pts.extkey"
:
{
immediate
:
true
,
handler
(
val
,
oldVal
)
{
if
(
this
.
model
.
brtp
.
oth
.
pts
.
extkey
!=
''
)
{
this
.
flag3
=
true
;
}
else
{
this
.
flag3
=
false
;
}
}
},
},
methods
:
{
},
created
:
function
()
{},
methods
:
{},
created
:
function
()
{
},
computed
:
{
opn2cur
()
{
this
.
model
.
brdgrp
.
cbs
.
opn2
.
cur
=
this
.
model
.
brdgrp
.
cbs
.
max
.
cur
return
this
.
model
.
brdgrp
.
cbs
.
opn2
.
cur
}
}
};
</
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