mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 17:58:17 +08:00
13 lines
262 B
XML
13 lines
262 B
XML
/* eslint-disable */
|
|
var style = require('../wxs/style.wxs');
|
|
|
|
function barStyle(data) {
|
|
return style({
|
|
'z-index': data.zIndex,
|
|
'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
barStyle: barStyle,
|
|
}; |