邃芒智像相册
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
263 B

  1. /* eslint-disable */
  2. var style = require('../wxs/style.wxs');
  3. function barStyle(data) {
  4. return style({
  5. 'z-index': data.zIndex,
  6. 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
  7. });
  8. }
  9. module.exports = {
  10. barStyle: barStyle,
  11. };