vantui-edit
Version:
一套适用于Taro3及React的vantui组件库
16 lines (12 loc) • 308 B
JavaScript
import { style } from '../wxs/style';
function barStyle(data) {
var newData = {
'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
height: data.height + 'px'
};
if (data.zIndex) {
newData['z-index'] = data.zIndex;
}
return style(newData);
}
export { barStyle };