index.sjs 485 B

123456789101112131415161718192021222324
  1. function getClassName(checked, disabled) {
  2. if (!checked && !disabled) {
  3. return 'icon';
  4. }
  5. if (checked && !disabled) {
  6. return 'checkedIcon';
  7. }
  8. if (!checked && disabled) {
  9. return 'disbaledIcon';
  10. }
  11. if (checked && disabled) {
  12. return 'disabledCheckedIcon';
  13. }
  14. }
  15. function getChecked(index, options, value) {
  16. if (options[index].value === value) {
  17. return true;
  18. }
  19. return false;
  20. }
  21. export default {
  22. getClassName: getClassName,
  23. getChecked: getChecked
  24. };