helpcenter.ts 559 B

1234567891011121314151617181920212223242526
  1. import createAxios from '/@/utils/axios'
  2. import {classification} from '/@/api/controllerUrls'
  3. export function getHelpCategoryList() {
  4. return createAxios({
  5. url: classification + '/type/list',
  6. method: 'get'
  7. })
  8. }
  9. export function getInfoList(data: any) {
  10. return createAxios({
  11. url: classification + '/index',
  12. method: 'get',
  13. params:data,
  14. })
  15. }
  16. export function getInfoDetail(data: any) {
  17. return createAxios({
  18. url: classification + '/detail',
  19. method: 'get',
  20. params:data,
  21. })
  22. }