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