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
7bfafe24
Commit
7bfafe24
authored
Jul 17, 2020
by
徐一鸣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
steps组件优化
parent
403b28f7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
2 deletions
+14
-2
src/components/app-build-steps/app-build-steps.vue
src/components/app-build-steps/app-build-steps.vue
+6
-1
src/components/deployment-info.vue
src/components/deployment-info.vue
+7
-1
src/pages/workbench/app_build.vue
src/pages/workbench/app_build.vue
+1
-0
No files found.
src/components/app-build-steps/app-build-steps.vue
View file @
7bfafe24
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
</
template
>
</
template
>
</ul>
</ul>
<div
class=
"steps_container steps_done"
v-if=
"done"
>
<div
class=
"steps_container steps_done"
v-if=
"done
&& showDone
"
>
<div
class=
"steps_done_info"
>
<div
class=
"steps_done_info"
>
<div
class=
"left_container"
>
<div
class=
"left_container"
>
<img
<img
...
@@ -85,6 +85,10 @@ export default {
...
@@ -85,6 +85,10 @@ export default {
type
:
Boolean
,
type
:
Boolean
,
default
:
()
=>
false
,
default
:
()
=>
false
,
},
},
showDone
:
{
type
:
Boolean
,
default
:
()
=>
false
,
},
doneTitle
:
{
doneTitle
:
{
type
:
String
,
type
:
String
,
default
:
()
=>
"
操作成功
"
,
default
:
()
=>
"
操作成功
"
,
...
@@ -193,6 +197,7 @@ export default {
...
@@ -193,6 +197,7 @@ export default {
}
}
.steps_done
{
.steps_done
{
position
:
relative
;
position
:
relative
;
min-height
:
400px
;
}
}
.steps_done_info
{
.steps_done_info
{
position
:
absolute
;
position
:
absolute
;
...
...
src/components/deployment-info.vue
View file @
7bfafe24
...
@@ -96,11 +96,17 @@ export default {
...
@@ -96,11 +96,17 @@ export default {
</
script
>
</
script
>
<
style
scoped
>
<
style
scoped
>
.
deployment_info
{
.
{
display
:
flex
;
display
:
flex
;
justify-content
:
space-between
;
justify-content
:
space-between
;
align-items
:
stretch
;
align-items
:
stretch
;
}
}
.deployment_info
>
.app_build_steps
{
min-height
:
calc
(
100vh
-
150px
-
43px
);
border-radius
:
12px
;
background-color
:
#fff
;
padding
:
30px
;
}
.state_steps
{
.state_steps
{
width
:
270px
;
width
:
270px
;
flex-shrink
:
0
;
flex-shrink
:
0
;
...
...
src/pages/workbench/app_build.vue
View file @
7bfafe24
...
@@ -9,6 +9,7 @@
...
@@ -9,6 +9,7 @@
<app-build-steps
<app-build-steps
:active-step=
"step"
:active-step=
"step"
:done=
"done"
:done=
"done"
:show-done=
"true"
done-title=
"提交成功"
done-title=
"提交成功"
done-sub-title=
"应用已创建,可前往应用仓库进行应用部署"
done-sub-title=
"应用已创建,可前往应用仓库进行应用部署"
>
>
...
...
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