config.json 768 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "form": [
  3. {
  4. "title": "错误页面",
  5. "type": "array",
  6. "key": "error_pages",
  7. "required": false,
  8. "items": [
  9. {
  10. "title": "错误码",
  11. "key": "codes",
  12. "type": "select",
  13. "option": ["502","401","403","503"],
  14. "mode": "tags"
  15. },
  16. {
  17. "title": "响应码",
  18. "key": "respCode",
  19. "type": "int",
  20. "required": false,
  21. "description": "重定向错误页面后,返回给前端的HTTP状态码,比如:404,200,301"
  22. },
  23. {
  24. "title": "跳转uri",
  25. "key": "uri",
  26. "type": "string",
  27. "description": "当错误发生时,跳转的路由或者页面"
  28. }
  29. ]
  30. }
  31. ]
  32. }