index.sjs 592 B

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