diff --git a/src/base/combination/combo.js b/src/base/combination/combo.js index 1e63ec054..c9bbfc773 100644 --- a/src/base/combination/combo.js +++ b/src/base/combination/combo.js @@ -340,11 +340,20 @@ this.resetListWidth(""); var width = this.popupView.element.outerWidth(); var maxW = this.element.outerWidth() || o.width; - if (width > maxW + 80) { - maxW = maxW + 80; - } else if (width > maxW) { - maxW = width; + // BI-93885 最大列宽算法调整 + if (maxW < 500) { + if (width > 500) { + maxW = 500; + } else if(width > maxW) { + maxW = width; + } } + + // if (width > maxW + 80) { + // maxW = maxW + 80; + // } else if (width > maxW) { + // maxW = width; + // } this.resetListWidth(maxW < 100 ? 100 : maxW); } },