海鲜小程序

index.wxs 510B

123456789101112131415161718192021
  1. /* eslint-disable */
  2. var utils = require('../wxs/utils.wxs');
  3. function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) {
  4. var styles = [['font-size', utils.addUnit(iconSize)]];
  5. if (checkedColor && value && !disabled && !parentDisabled) {
  6. styles.push(['border-color', checkedColor]);
  7. styles.push(['background-color', checkedColor]);
  8. }
  9. return styles
  10. .map(function(item) {
  11. return item.join(':');
  12. })
  13. .join(';');
  14. }
  15. module.exports = {
  16. iconStyle: iconStyle
  17. };