Files
quinn-accounts/miniprogram_npm/tdesign-miniprogram/dropdown-item/index.wxs
2023-02-12 19:05:37 +08:00

10 lines
250 B
XML

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