avatar.wxs 311 B

123456789101112131415
  1. function styles(bgImage, bgColor) {
  2. return {
  3. backgroundImage: bgImage ?'': null,
  4. backgroundColor: ''
  5. };
  6. }
  7. // function iconStyles(bgIcon) {
  8. // return bgIcon ? { backgroundImage: `url(${bgIcon})` } : null;
  9. // }
  10. module.exports = {
  11. styles: styles,
  12. // iconStyles: iconStyles,
  13. };