Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
apaas-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gzga-jzapi
apaas-ui
Commits
77db6411
Commit
77db6411
authored
Jul 02, 2020
by
刘殿昕
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
app_id用query传,params会造成其他问题
parent
661ba884
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
src/pages/workbench/yygl/deploy_app_detail.vue
src/pages/workbench/yygl/deploy_app_detail.vue
+2
-2
src/pages/workbench/yygl/yyglList.vue
src/pages/workbench/yygl/yyglList.vue
+1
-1
src/router/index.js
src/router/index.js
+1
-1
No files found.
src/pages/workbench/yygl/deploy_app_detail.vue
View file @
77db6411
...
@@ -646,7 +646,7 @@ export default {
...
@@ -646,7 +646,7 @@ export default {
this
.
$api
.
workbench
this
.
$api
.
workbench
.
getAppIntroduction
({
.
getAppIntroduction
({
deploy_id
:
this
.
$route
.
params
.
deploy_id
,
deploy_id
:
this
.
$route
.
params
.
deploy_id
,
app_id
:
this
.
$route
.
params
.
app_id
app_id
:
this
.
$route
.
query
.
app_id
})
})
.
then
(
response
=>
{
.
then
(
response
=>
{
let
data
=
response
.
data
.
data
;
let
data
=
response
.
data
.
data
;
...
@@ -656,7 +656,7 @@ export default {
...
@@ -656,7 +656,7 @@ export default {
});
});
this
.
$api
.
workbench
this
.
$api
.
workbench
.
getAppParams
({
.
getAppParams
({
app_id
:
this
.
$route
.
params
.
app_id
app_id
:
this
.
$route
.
query
.
app_id
})
})
.
then
(
response
=>
{
.
then
(
response
=>
{
let
data
=
response
.
data
.
data
;
let
data
=
response
.
data
.
data
;
...
...
src/pages/workbench/yygl/yyglList.vue
View file @
77db6411
...
@@ -1169,7 +1169,7 @@ export default {
...
@@ -1169,7 +1169,7 @@ export default {
);
);
},
},
detailItemDeploy
(
item
)
{
detailItemDeploy
(
item
)
{
this
.
$router
.
push
(
`
${
this
.
detailsUrl
}${
item
.
app_id
}
/
${
item
.
deploy
_id
}
`
);
this
.
$router
.
push
(
`
${
this
.
detailsUrl
}${
item
.
deploy_id
}
?app_id=
${
item
.
app
_id
}
`
);
},
},
soldUpItem
(
item
)
{
soldUpItem
(
item
)
{
this
.
dialogInfo
.
title
=
"
提示
"
;
this
.
dialogInfo
.
title
=
"
提示
"
;
...
...
src/router/index.js
View file @
77db6411
...
@@ -92,7 +92,7 @@ export default new Router({
...
@@ -92,7 +92,7 @@ export default new Router({
component
:
()
=>
import
(
"
@/pages/workbench/yygl/app_edit
"
),
component
:
()
=>
import
(
"
@/pages/workbench/yygl/app_edit
"
),
},
},
{
{
path
:
"
/yygl/:level/:type/deploydetail/:
app_id/:
deploy_id
"
,
// 我部署的应用详情
path
:
"
/yygl/:level/:type/deploydetail/:deploy_id
"
,
// 我部署的应用详情
name
:
"
deploy_app_detail
"
,
name
:
"
deploy_app_detail
"
,
component
:
()
=>
component
:
()
=>
import
(
"
@/pages/workbench/yygl/deploy_app_detail
"
),
import
(
"
@/pages/workbench/yygl/deploy_app_detail
"
),
...
...
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