js.config.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. export default [
  2. {
  3. groupName: '网络',
  4. groupName_en: 'Network',
  5. list: [
  6. {
  7. path: 'http',
  8. icon: 'http',
  9. title: 'Http 请求',
  10. title_en: 'Http',
  11. }
  12. ]
  13. },
  14. {
  15. groupName: '全局变量',
  16. groupName_en: 'Global variable',
  17. list: [
  18. {
  19. path: 'globalVariable',
  20. icon: 'globalVariable',
  21. title: 'GlobalVariable 全局变量',
  22. title_en: 'GlobalVariable',
  23. }
  24. ]
  25. },
  26. {
  27. groupName: '工具库',
  28. groupName_en: 'Tool library',
  29. list: [
  30. {
  31. path: 'debounce',
  32. icon: 'debounce',
  33. title: 'Throttle | Debounce 节流防抖',
  34. title_en: 'Throttle | Debounce',
  35. },
  36. {
  37. path: 'deepMerge',
  38. icon: 'deepMerge',
  39. title: 'DeepMerge 对象深度合并',
  40. title_en: 'DeepMerge',
  41. },{
  42. path: 'deepClone',
  43. icon: 'deepClone',
  44. title: 'DeepClone 对象深度克隆',
  45. title_en: 'DeepClone',
  46. },
  47. {
  48. path: 'timeFormat',
  49. icon: 'timeFormat',
  50. title: 'TimeFormat 时间格式化',
  51. title_en: 'TimeFormat',
  52. },{
  53. path: 'timeFrom',
  54. icon: 'timeFrom',
  55. title: 'TimeFrom 多久之前',
  56. title_en: 'TimeFrom',
  57. },{
  58. path: 'guid',
  59. icon: 'guid',
  60. title: 'Guid 全局唯一id',
  61. title_en: 'Guid',
  62. },{
  63. path: 'route',
  64. icon: 'route',
  65. title: 'Route 路由跳转',
  66. title_en: 'Route',
  67. },{
  68. path: 'randomArray',
  69. icon: 'randomArray',
  70. title: 'RandomArray 数组乱序',
  71. title_en: 'RandomArray',
  72. },{
  73. path: 'colorSwitch',
  74. icon: 'colorSwitch',
  75. title: 'ColorSwitch 颜色转换',
  76. title_en: 'ColorSwitch',
  77. },{
  78. path: 'color',
  79. icon: 'color',
  80. title: 'Color 颜色值',
  81. title_en: 'Color',
  82. },{
  83. path: 'queryParams',
  84. icon: 'queryParams',
  85. title: 'QueryParams 对象转URL参数',
  86. title_en: 'QueryParams',
  87. },{
  88. path: 'test',
  89. icon: 'test',
  90. title: 'Test 规则校验',
  91. title_en: 'Test',
  92. },{
  93. path: 'md5',
  94. icon: 'md5',
  95. title: 'Md5 md5加密',
  96. title_en: 'Md5',
  97. },{
  98. path: 'random',
  99. icon: 'random',
  100. title: 'Random 随机数值',
  101. title_en: 'Random',
  102. },{
  103. path: 'trim',
  104. icon: 'trim',
  105. title: 'Trim 去除空格',
  106. title_en: 'Trim',
  107. },{
  108. path: 'getRect',
  109. icon: 'getRect',
  110. title: 'GetRect 节点信息',
  111. title_en: 'GetRect',
  112. },{
  113. path: 'mpShare',
  114. icon: 'mpShare',
  115. title: 'MpShare 小程序分享',
  116. title_en: 'MpShare',
  117. }
  118. ]
  119. }
  120. ]