index.wxs 361 B

123456789101112131415161718192021
  1. /* eslint-disable */
  2. function wrapStyle(data) {
  3. if (data.fixed) {
  4. return 'top: ' + data.offsetTop + 'px;';
  5. }
  6. return '';
  7. }
  8. function containerStyle(data) {
  9. if (data.fixed) {
  10. return 'height: ' + data.height + 'px; z-index: ' + data.zIndex + ';';
  11. }
  12. return '';
  13. }
  14. module.exports = {
  15. wrapStyle: wrapStyle,
  16. containerStyle: containerStyle
  17. };