register.js 456 B

12345678910111213141516171819202122232425
  1. module.exports = [
  2. {
  3. title: '用户审核',
  4. path: '',
  5. icon: 'idok',
  6. module: '@user',
  7. children: [
  8. {
  9. title: '待审核',
  10. path: '/xms/register/pending',
  11. icon: 'prompt',
  12. },
  13. {
  14. title: '已审核',
  15. path: '/xms/register/done',
  16. icon: 'success',
  17. },
  18. {
  19. title: '已驳回',
  20. path: '/xms/register/rejected',
  21. icon: 'error',
  22. },
  23. ],
  24. },
  25. ];