微信小程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

19 righe
355 B

  1. /* eslint-disable */
  2. var style = require('../wxs/style.wxs');
  3. var addUnit = require('../wxs/add-unit.wxs');
  4. function rootStyle(data) {
  5. return style([
  6. {
  7. 'border-color': data.borderColor,
  8. color: data.textColor,
  9. 'font-size': addUnit(data.fontSize),
  10. },
  11. data.customStyle,
  12. ]);
  13. }
  14. module.exports = {
  15. rootStyle: rootStyle,
  16. };