电速宝
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. };