mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
21 lines
377 B
XML
21 lines
377 B
XML
/* eslint-disable */
|
|
var utils = require('../wxs/utils.wxs');
|
|
|
|
function barStyle(barHeight, activeColor) {
|
|
var styles = [['height', utils.addUnit(barHeight)]];
|
|
|
|
if (activeColor) {
|
|
styles.push(['background', activeColor]);
|
|
}
|
|
|
|
return styles
|
|
.map(function (item) {
|
|
return item.join(':');
|
|
})
|
|
.join(';');
|
|
}
|
|
|
|
module.exports = {
|
|
barStyle: barStyle,
|
|
};
|