mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
18 lines
320 B
XML
18 lines
320 B
XML
/* eslint-disable */
|
|
function barStyle(data) {
|
|
var styles = [
|
|
['z-index', data.zIndex],
|
|
['padding-top', data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0],
|
|
];
|
|
|
|
return styles
|
|
.map(function (item) {
|
|
return item.join(':');
|
|
})
|
|
.join(';');
|
|
}
|
|
|
|
module.exports = {
|
|
barStyle: barStyle,
|
|
};
|