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
479823f4
Commit
479823f4
authored
Jul 07, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应用构建-镜像详情增加展示字段
parent
e6712bb7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
src/components/image-detail.vue
src/components/image-detail.vue
+8
-3
src/pages/workbench/app_build.vue
src/pages/workbench/app_build.vue
+1
-0
No files found.
src/components/image-detail.vue
View file @
479823f4
<
template
>
<div
class=
"image_detail"
>
<apass-dialog
ref=
"listdialog"
:title=
"title"
width=
"
985
px"
>
<apass-dialog
ref=
"listdialog"
:title=
"title"
width=
"
1200
px"
>
<template
slot=
"content"
>
<div
class=
"apass_table"
>
<el-table
:data=
"imageData"
>
<el-table-column
width=
"20"
></el-table-column>
<el-table-column
label=
"版本号"
align=
"left"
>
<el-table-column
label=
"版本号"
width=
"120"
align=
"left"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
name
}}
</
template
>
...
...
@@ -15,6 +15,11 @@
{{
scope
.
row
.
author
}}
</
template
>
</el-table-column>
<el-table-column
label=
"镜像地址"
align=
"left"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
image_url
}}
</
template
>
</el-table-column>
<el-table-column
label=
"创建时间"
width=
"180"
align=
"center"
>
<
template
slot-scope=
"scope"
>
{{
dateTransform
(
scope
.
row
.
created
)
}}
...
...
@@ -25,7 +30,7 @@
{{
getSize
(
scope
.
row
.
size
)
}}
</
template
>
</el-table-column>
<el-table-column
label=
"漏洞"
width=
"160"
align=
"center"
>
<el-table-column
label=
"漏洞"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<image-bugs
v-if=
"scope.row.scan_overview"
...
...
src/pages/workbench/app_build.vue
View file @
479823f4
...
...
@@ -384,6 +384,7 @@ export default {
this
.
image_noMore
=
false
;
})
.
catch
((
error
)
=>
{
this
.
image_loading
=
false
;
console
.
log
(
error
);
});
},
...
...
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