hookehuyr

fix 修复产品中心弹出框高度显示问题

<!--
* @Date: 2024-09-26 13:42:11
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-11-01 17:26:50
* @LastEditTime: 2024-11-07 14:28:25
* @FilePath: /hager/src/components/common/hagerHeader.vue
* @Description: 文件描述
-->
......@@ -299,6 +299,7 @@ export default {
const availableHeight = windowHeight - topOffset;
// 设置 .product-right-wrapper 的最大高度,确保不会溢出窗口
productRightWrapper.style.height = availableHeight + 'px';
productRightWrapper.style.overflowY = 'scroll';
}
})
},
......@@ -452,7 +453,7 @@ export default {
flex-basis: 66.67%;
background-color: @background-color;
padding: 1.75rem 1.5rem;
overflow: scroll;
box-sizing:border-box;
.product-right-title {
display: flex;
justify-content: space-between;
......