odc.xiaohui
2023-03-23 15171d9f0b4714d06cb7de3f8d462881742cb608
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable */
var style = require('../wxs/style.wxs');
 
function rootStyle(data) {
  return style({
    'background-color': data.plain ? '' : data.color,
    color: data.textColor || data.plain ? data.textColor || data.color : '',
  });
}
 
module.exports = {
  rootStyle: rootStyle,
};