合伙人运营小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

popup.wxs 498B

123456789101112131415161718
  1. function getPopupStyles(zIndex, distanceTop, placement) {
  2. var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
  3. if ((placement === 'top' || placement === 'left' || placement === 'right') && distanceTop) {
  4. zIndexStyle = zIndexStyle + 'top:' + distanceTop + 'px;'
  5. }
  6. return zIndexStyle;
  7. }
  8. function onContentTouchMove (e) {
  9. if (e.target.dataset.prevention) {
  10. return false;
  11. };
  12. }
  13. module.exports = {
  14. getPopupStyles: getPopupStyles,
  15. onContentTouchMove: onContentTouchMove
  16. };