江西小程序管理端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
686 B

1 year ago
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 1.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : LQ
  7. * @lastTime : 2021-08-20 17:45:47
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/loadingIcon.js
  9. */
  10. import config from '../config'
  11. const {
  12. color
  13. } = config
  14. export default {
  15. // loading-icon加载中图标组件
  16. loadingIcon: {
  17. show: true,
  18. color: color['u-tips-color'],
  19. textColor: color['u-tips-color'],
  20. vertical: false,
  21. mode: 'spinner',
  22. size: 24,
  23. textSize: 15,
  24. text: '',
  25. timingFunction: 'ease-in-out',
  26. duration: 1200,
  27. inactiveColor: ''
  28. }
  29. }