Suzhou-SafetyToolsWarning-WX/miniprogram_npm/tdesign-miniprogram/dropdown-item/index.wxs

10 lines
235 B
Plaintext
Raw Normal View History

2025-11-07 14:54:09 +08:00
var getStyles = function (top, zIndex) {
var topStyle = top ? 'top:' + top + 'px;' : '';
var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
return topStyle + zIndexStyle;
};
module.exports = {
getStyles: getStyles,
};