工单小程序2024-11-20
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.

29 lines
486 B

3 months ago
  1. // 配置相关接口
  2. const api = {
  3. // 示例
  4. getConfig: {
  5. url: '/api/getConfig',
  6. method: 'GET',
  7. limit: 500,
  8. },
  9. //配置信息-查询工单状态配置
  10. templateStatusInfo: {
  11. url: '/workorder/config/templateStatusInfo',
  12. method: 'GET',
  13. },
  14. // 配置信息-帮助中心
  15. helpInfo: {
  16. url: '/workorder/config/helpInfo',
  17. method: 'GET',
  18. },
  19. // 配置信息-隐私协议
  20. privacyInfo: {
  21. url: '/workorder/config/privacyInfo',
  22. method: 'GET',
  23. },
  24. }
  25. export default api