Commit 3a1005cf authored by 张俊's avatar 张俊

Merge branch 'dev' of https://cloud.wodcloud.com/git/apaas/apaas-v3-ui into dev

parents a1d1217a 5de8371d
...@@ -676,6 +676,10 @@ width: 620px!important; ...@@ -676,6 +676,10 @@ width: 620px!important;
height: calc(100vh - 84px - 83px); height: calc(100vh - 84px - 83px);
min-height: 400px; min-height: 400px;
} }
.apaas_detail_container .main_contaner.locked_height_900 {
height: calc(100vh - 84px - 83px);
min-height: 900px;
}
.apaas_detail_container .detail_action { .apaas_detail_container .detail_action {
text-align: right; text-align: right;
margin-top: 50px; margin-top: 50px;
......
...@@ -1300,6 +1300,7 @@ export default { ...@@ -1300,6 +1300,7 @@ export default {
store_type: "nfs-client", store_type: "nfs-client",
}, },
], ],
remove_disks: this.delDataDiskList.map((item) => item.id),
}; };
this.$api.serviceShop.updateCloud(query).then((response) => { this.$api.serviceShop.updateCloud(query).then((response) => {
if (response.data.success == 1) { if (response.data.success == 1) {
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</el-breadcrumb> </el-breadcrumb>
</div> </div>
<div class="main_contaner locked_height"> <div class="main_contaner locked_height_900">
<steps <steps
:active-step="step" :active-step="step"
:done="done" :done="done"
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
</el-breadcrumb> </el-breadcrumb>
</div> </div>
<div class="main_contaner locked_height"> <div class="main_contaner locked_height_900">
<steps <steps
:active-step="step" :active-step="step"
:done="done" :done="done"
......
...@@ -502,10 +502,7 @@ export default { ...@@ -502,10 +502,7 @@ export default {
align: "center", align: "center",
type: "image-tooltip", type: "image-tooltip",
getImage(item) { getImage(item) {
if ( if (item.apply_type === 0 && item.approve_state === -1) {
(item.apply_type === 0 && item.approve_state === -1) ||
(item.apply_type === 1 && item.approve_update_state === -1)
) {
return require("@/assets/imgs/ic_cancel.png"); return require("@/assets/imgs/ic_cancel.png");
} }
...@@ -514,10 +511,7 @@ export default { ...@@ -514,10 +511,7 @@ export default {
: require("@/assets/imgs/ic_failed.png"); : require("@/assets/imgs/ic_failed.png");
}, },
getTooltip(item) { getTooltip(item) {
if ( if (item.apply_type === 0 && item.approve_state === -1) {
(item.apply_type === 0 && item.approve_state === -1) ||
(item.apply_type === 1 && item.approve_update_state === -1)
) {
return "审批未通过"; return "审批未通过";
} }
...@@ -873,10 +867,7 @@ export default { ...@@ -873,10 +867,7 @@ export default {
align: "center", align: "center",
type: "image-tooltip", type: "image-tooltip",
getImage(item) { getImage(item) {
if ( if (item.apply_type === 0 && item.approve_state === -1) {
(item.apply_type === 0 && item.approve_state === -1) ||
(item.apply_type === 1 && item.approve_update_state === -1)
) {
return require("@/assets/imgs/ic_cancel.png"); return require("@/assets/imgs/ic_cancel.png");
} }
...@@ -885,10 +876,7 @@ export default { ...@@ -885,10 +876,7 @@ export default {
: require("@/assets/imgs/ic_failed.png"); : require("@/assets/imgs/ic_failed.png");
}, },
getTooltip(item) { getTooltip(item) {
if ( if (item.apply_type === 0 && item.approve_state === -1) {
(item.apply_type === 0 && item.approve_state === -1) ||
(item.apply_type === 1 && item.approve_update_state === -1)
) {
return "审批未通过"; return "审批未通过";
} }
......
...@@ -443,10 +443,7 @@ export default { ...@@ -443,10 +443,7 @@ export default {
align: "center", align: "center",
type: "image-tooltip", type: "image-tooltip",
getImage(item) { getImage(item) {
if ( if (item.apply_type === 0 && item.approve_state === -1) {
(item.apply_type === 0 && item.approve_state === -1) ||
(item.apply_type === 1 && item.approve_update_state === -1)
) {
return require("@/assets/imgs/ic_cancel.png"); return require("@/assets/imgs/ic_cancel.png");
} }
...@@ -455,10 +452,7 @@ export default { ...@@ -455,10 +452,7 @@ export default {
: require("@/assets/imgs/ic_failed.png"); : require("@/assets/imgs/ic_failed.png");
}, },
getTooltip(item) { getTooltip(item) {
if ( if (item.apply_type === 0 && item.approve_state === -1) {
(item.apply_type === 0 && item.approve_state === -1) ||
(item.apply_type === 1 && item.approve_update_state === -1)
) {
return "审批未通过"; return "审批未通过";
} }
......
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