Files
test/miniprogram_npm/tdesign-miniprogram/dropdown-item/index.wxs
lingxiao865 6c6fe3d0d6 first commit
2025-09-18 12:39:54 +08:00

10 lines
235 B
XML

var getStyles = function (top, zIndex) {
var topStyle = top ? 'top:' + top + 'px;' : '';
var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
return topStyle + zIndexStyle;
};
module.exports = {
getStyles: getStyles,
};