index.wxs 517 B

123456789101112131415161718192021222324252627
  1. function getDayStyle(type, color) {
  2. var style = [];
  3. if (color) {
  4. if (
  5. type === 'start' ||
  6. type === 'end' ||
  7. type === 'selected'
  8. ) {
  9. style.push(['background', color]);
  10. } else if (type === 'middle') {
  11. style.push(['color', color]);
  12. // style.push(['background', color]);
  13. // style.push(['opacity', '0.1']);
  14. }
  15. }
  16. return style
  17. .map(function(item) {
  18. return item.join(':');
  19. })
  20. .join(';');
  21. }
  22. module.exports = {
  23. getDayStyle: getDayStyle,
  24. };