popup.wxs 203 B

12345678
  1. function getPopupStyles(zIndex, customStyle) {
  2. var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
  3. return zIndexStyle + customStyle;
  4. }
  5. module.exports = {
  6. getPopupStyles: getPopupStyles,
  7. };