index.sjs 347 B

1234567891011121314
  1. var antmove_export = {};
  2. /* eslint-disable */
  3. function barStyle(data) {
  4. var styles = [['z-index', data.zIndex], ['padding-top', data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0]];
  5. return styles.map(function (item) {
  6. return item.join(':');
  7. }).join(';');
  8. }
  9. antmove_export = {
  10. barStyle: barStyle
  11. };
  12. export default antmove_export;