forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-09-15 159d0a98310210768b2e0c57a68a523c2739e2ee
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,
};