电速宝
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.wxs 235B

123456789
  1. var getStyles = function (top, zIndex) {
  2. var topStyle = top ? 'top:' + top + 'px;' : '';
  3. var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
  4. return topStyle + zIndexStyle;
  5. };
  6. module.exports = {
  7. getStyles: getStyles,
  8. };