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
0bb84a58
Commit
0bb84a58
authored
Jul 15, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查看镜像详情
parent
6cb436bf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
5 deletions
+10
-5
src/components/image-detail.vue
src/components/image-detail.vue
+2
-3
src/pages/workbench/app_build.vue
src/pages/workbench/app_build.vue
+4
-1
src/pages/workbench/yygl/app_detail.vue
src/pages/workbench/yygl/app_detail.vue
+4
-1
No files found.
src/components/image-detail.vue
View file @
0bb84a58
...
@@ -86,8 +86,7 @@ export default {
...
@@ -86,8 +86,7 @@ export default {
},
},
},
},
methods
:
{
methods
:
{
showDialog
(
image
,
id
)
{
showDialog
(
image
)
{
image
.
id
=
id
this
.
image
=
image
;
this
.
image
=
image
;
this
.
imageData
=
[];
this
.
imageData
=
[];
this
.
getImageDetail
();
this
.
getImageDetail
();
...
@@ -153,7 +152,7 @@ export default {
...
@@ -153,7 +152,7 @@ export default {
},
},
getImageDetail
()
{
getImageDetail
()
{
this
.
$http
this
.
$http
.
get
(
`/apaas/hubApi/image/imageDetails/
${
this
.
image
.
name
}
?app_id=
${
this
.
image
.
id
}
`
)
.
get
(
`/apaas/hubApi/image/imageDetails/
${
this
.
image
.
name
}
?app_id=
${
this
.
image
.
app_
id
}
`
)
.
then
(({
data
})
=>
{
.
then
(({
data
})
=>
{
this
.
imageData
=
data
.
data
||
[];
this
.
imageData
=
data
.
data
||
[];
})
})
...
...
src/pages/workbench/app_build.vue
View file @
0bb84a58
...
@@ -597,7 +597,10 @@ export default {
...
@@ -597,7 +597,10 @@ export default {
this
.
$refs
.
dialog
.
show
();
this
.
$refs
.
dialog
.
show
();
},
},
showImageDetail
(
item
)
{
showImageDetail
(
item
)
{
this
.
$refs
.
imageDetail
.
showDialog
(
item
);
this
.
$refs
.
imageDetail
.
showDialog
({
...
item
,
app_id
:
this
.
app_id
});
},
},
stepsDone
()
{
stepsDone
()
{
this
.
done
=
true
;
this
.
done
=
true
;
...
...
src/pages/workbench/yygl/app_detail.vue
View file @
0bb84a58
...
@@ -343,7 +343,10 @@ export default {
...
@@ -343,7 +343,10 @@ export default {
},
},
methods
:
{
methods
:
{
showImageDetail
(
item
)
{
showImageDetail
(
item
)
{
this
.
$refs
.
imageDetail
.
showDialog
(
item
,
this
.
$route
.
params
.
id
);
this
.
$refs
.
imageDetail
.
showDialog
({
...
item
,
app_id
:
this
.
$route
.
params
.
id
});
},
},
getCurrentUser
()
{
getCurrentUser
()
{
this
.
$api
.
user
.
getNowUser
().
then
(({
data
})
=>
{
this
.
$api
.
user
.
getNowUser
().
then
(({
data
})
=>
{
...
...
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