city-casereport/miniprogram_npm/tdesign-miniprogram/popup/popup.wxs

16 lines
314 B
Plaintext
Raw Permalink Normal View History

2023-12-06 14:22:42 +08:00
function getPopupStyles(zIndex) {
var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
return zIndexStyle;
}
function onContentTouchMove (e) {
if (e.target.dataset.prevention) {
return false;
};
}
module.exports = {
getPopupStyles: getPopupStyles,
onContentTouchMove: onContentTouchMove
};