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
d935730b
Commit
d935730b
authored
Feb 09, 2022
by
liuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
汇出汇款调整
parent
4bca847e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
2 deletions
+35
-2
Sbxx.vue
src/views/Business/Cptopn/Sbxx.vue
+35
-2
No files found.
src/views/Business/Cptopn/Sbxx.vue
View file @
d935730b
...
...
@@ -15,6 +15,7 @@
v-model=
"model.bopmod.szflg"
style=
"width: 100%"
placeholder=
"请选择申报类型"
@
change=
"szflgChange"
>
<el-option
v-for=
"item in codes.szflg"
...
...
@@ -58,7 +59,7 @@
:disabled=
"model.bopmod.szflg==='3'"
>
<el-option
v-for=
"item in codes
.o
wnextkey"
v-for=
"item in codes
O
wnextkey"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
...
...
@@ -205,11 +206,43 @@ export default {
label
:
"不申报"
,
},
],
codesOwnextkey
:[
{
value
:
""
,
label
:
""
,
}
],
};
},
methods
:
{
...
Event
,
async
szflgChange
(){
let
rtnmsg
=
await
this
.
executeRule
(
"bopmod.szflg"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
){
this
.
model
.
bopmod
.
ownextkey
=
rtnmsg
.
data
.
bopmod_ownextkey
}
if
(
this
.
model
.
bopmod
.
szflg
===
'2'
){
this
.
model
.
bopmod
.
acttyp
=
''
;
}
if
(
this
.
model
.
bopmod
.
szflg
===
'3'
){
this
.
model
.
bopmod
.
ownextkey
=
''
;
this
.
model
.
bopmod
.
acttyp
=
''
;
}
}
},
created
:
function
()
{
},
watch
:
{
"model.bopmod.ownextkey"
:
function
(){
if
(
this
.
model
.
bopmod
.
ownextkey
!=
''
){
var
instName
=
window
.
sessionStorage
.
instName
||
"北京分行"
;
this
.
codesOwnextkey
[
0
].
value
=
this
.
model
.
bopmod
.
ownextkey
;
this
.
codesOwnextkey
[
0
].
label
=
this
.
model
.
bopmod
.
ownextkey
+
instName
;
}
else
{
this
.
codesOwnextkey
[
0
].
value
=
''
;
this
.
codesOwnextkey
[
0
].
label
=
''
;
}
}
},
created
:
function
()
{},
};
</
script
>
<
style
>
...
...
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