index.wxs 355 B

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