Merge branch 'fix-vue3-left-bug'

This commit is contained in:
田香琪
2026-07-09 17:59:19 +08:00
15 changed files with 222 additions and 52 deletions

View File

@@ -106,13 +106,13 @@ export default {
:deep(.el-menu-item.is-active) {
background-color: #fff !important;
color: $theme_color !important;
color: var(--el-color-primary) !important;
}
:deep(.el-menu-item.is-active:hover),
:deep(.el-menu-item.is-active:focus) {
background-color: #fff !important;
color: $theme_color !important;
color: var(--el-color-primary) !important;
}
}

View File

@@ -645,8 +645,8 @@ html.z-modal body {
}
.hz-edit-img img {
max-width: 300px;
max-height: 200px;
max-width: 240px;
max-height: 140px;
margin-bottom: 10px;
}

View File

@@ -54,6 +54,7 @@
<el-dialog
v-model="showModal"
title="编辑热区"
width="420px"
:close-on-click-modal="false"
append-to-body
@close="cancelZone"
@@ -179,6 +180,7 @@ export default {
this.zoneForm.link = this.$filters.formatLinkType(val);
this.settingZone(val);
this.changeInfo(this.zoneForm);
this.showModal = false;
},
settingZone(val) {
this.zoneForm.type = val.___type || val.type;