- 品牌: 白漉
- 尺码: S M L
- 面料: 其他
- 图案: 碎花
- 风格: 通勤
- 通勤: 复古
- 领型: 方领
- 腰型: 高腰
- 衣门襟: 套头
- 颜色分类: 米白色
- 袖型: 泡泡袖
- 组合形式: 单件
- 裙型: A字裙
- 适用季节: 夏季
- 年份季节: 2022年夏季
- 袖长: 短袖
- 裙长: 中长裙
- 流行元素/工艺: 印花
- 款式: 茶歇裙
- 廓形: A型
- 材质成分: 其他材质

在控制台输入这段代码: Shopline.event.on("Product::productPreviewInit", function(e) { var data = e && e.data; if (data && data.modalType === "quickAddToCart") { var ele = data.modalContainerElement; if (ele) { var parentDom = ele.querySelector( "#product-button-list_" + data.id ); var targetDom = parentDom ? parentDom.querySelector("#payment_button_" + data.id) : null; function removeDisabled() { var pod = ele.querySelector('.plugin-pod'); if (pod) { var payBtn = ele.querySelector('.pay-button-buy-now'); if (payBtn) { setTimeout(function() { payBtn.classList.remove('pay-button-disabled'); }, 100); } } } if (targetDom && MutationObserver) { var observer = new MutationObserver(function() { removeDisabled(); }); observer.observe(targetDom, { childList: true, subtree: true }); setTimeout(function() { observer.disconnect(); }, 10000); } } } });