index-loadingColor.wxs 187 B

12345678910111213
  1. function get(type, color,plain) {
  2. if(plain) {
  3. return color ? color: '#c9c9c9';
  4. }
  5. if(type === 'default') {
  6. return '#c9c9c9';
  7. }
  8. return 'white';
  9. }
  10. module.exports = get;