Commit d8a4bfa6 authored by 徐一鸣's avatar 徐一鸣

Merge branch 'xym' into dev

parents 51d1b45b ed836f76
......@@ -3,9 +3,12 @@
<div class="apass_breadcrumb">
<slot name="breadcrumb"></slot>
</div>
<div class="main-container">
<div class="main-container top_container" v-if="$slots.top">
<slot name="top"></slot>
</div>
<div class="main-container">
<div class="header-container" v-if="!hideHeader">
<div class="header-left apass_button">
<el-button
......@@ -257,4 +260,8 @@ export default {
.list-container {
flex-grow: 1;
}
.top_container {
flex-grow: 0;
margin-bottom: 20px;
}
</style>
This diff is collapsed.
......@@ -94,7 +94,7 @@
下一步
</el-button>
</div>
<image-detail ref="imageDetail" :image="selectedImage"></image-detail>
<image-detail ref="imageDetail"></image-detail>
</app-build-step>
<app-build-step
title="上传部署文件"
......@@ -360,7 +360,6 @@ export default {
msg: "",
submit: null,
},
selectedImage: null,
}),
methods: {
preStep() {
......@@ -575,8 +574,7 @@ export default {
}
},
showImageDetail(item) {
this.selectedImage = item;
this.$refs.imageDetail.showDialog();
this.$refs.imageDetail.showDialog(item);
},
},
mounted() {
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment