chenhaozhe
2025-07-02 dfd4d114395ce69b51bccd746b02e336873b8088
WebTM/layuiadmin/zy_dropdown.js
@@ -40,6 +40,7 @@
    // 可扩展其他类型
    switch (type) {
        case "icon": createIconCardItem([dropItems], dataList); break;
        default: console.error("未知type类型"); return;
    }
    globalDropdownWrapper.addEventListener("click", function (e) {
        callback.call(e)
@@ -55,6 +56,7 @@
        dropItem.style.flexDirection = "column"
        dropItem.style.justifyContent = "center"
        dropItem.style.alignItems = "center"
        dropItem.style.padding = "5px"
        dropItem.style.width = "96px";
        dropItem.style.height = "96px";
        dropItem.style.boxSizing = "border-box";
@@ -68,7 +70,7 @@
        let span = document.createElement("span");
        span.setAttribute('databinding', true)
        span.setAttribute('data-value', data.imgUrl)
        span.setAttribute('data-value', data.imgValue)
        span.innerText = data.imgName;
        span.style.maxWidth = "100%" // 限制最大宽度
        span.style.height = "20%"