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
zhouqian
vue-gjjs
Commits
ac470a98
Commit
ac470a98
authored
Dec 05, 2022
by
nanrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
通过按钮组组件跳转交易的修改。
parent
75237072
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
Infsea.vue
src/views/Business/Infbod/Infsea.vue
+4
-3
BusNavbar.vue
src/views/Public/BusNavbar.vue
+1
-1
No files found.
src/views/Business/Infbod/Infsea.vue
View file @
ac470a98
...
...
@@ -237,10 +237,11 @@ export default {
this
.
BotselModel
.
clsflg
=
(
closedDate
??
""
).
trim
()
===
""
?
""
:
"C"
;
console
.
log
(
"ownref:"
+
ownref
);
},
async
onChoose
(
code
)
{
async
onChoose
(
code
,
prePageId
)
{
//跳转交易
this
.
$router
.
history
.
push
(
"/business/"
+
code
)
this
.
$refs
.
childs
.
initdialog
=
false
// this.$router.history.push("/business/" + code)
this
.
$router
.
push
({
name
:
code
.
charAt
(
0
).
toUpperCase
()
+
code
.
substring
(
1
),
params
:
{
prePageId
}
});
this
.
$refs
.
childs
.
initdialog
=
false
;
},
closeTrn
(
refId
)
{
this
.
$refs
[
refId
].
doClose
();
...
...
src/views/Public/BusNavbar.vue
View file @
ac470a98
...
...
@@ -75,7 +75,7 @@ export default {
let
rtnmsg
=
await
this
.
executeRule
(
`cfgfil.hotsub
${
i
}
`
);
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
navcode
=
[];
this
.
$emit
(
"onChoose"
,
code
.
toLowerCase
());
this
.
$emit
(
"onChoose"
,
code
.
toLowerCase
()
,
this
.
model
.
pageId
);
}
else
{
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
}
...
...
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