helpApi.js 434 B

12345678910111213141516171819
  1. import {get,post} from './index'
  2. /**
  3. * 获取帮助文档分类列表
  4. * @param bus_code String 商家code
  5. * @returns
  6. */
  7. export function apiGetHelpDocClassify(params){
  8. return get('help_doc/classify/list',params)
  9. }
  10. /**
  11. * 获取帮助文档详情
  12. * @param bus_code String 商家code
  13. * @param classify_id number 分类Id
  14. * @returns
  15. */
  16. export function apiGetHelpDocDetail(params){
  17. return get('help_doc/detail',params)
  18. }