12345678910111213141516171819 |
- import {get,post} from './index'
- /**
- * 获取帮助文档分类列表
- * @param bus_code String 商家code
- * @returns
- */
- export function apiGetHelpDocClassify(params){
- return get('help_doc/classify/list',params)
- }
- /**
- * 获取帮助文档详情
- * @param bus_code String 商家code
- * @param classify_id number 分类Id
- * @returns
- */
- export function apiGetHelpDocDetail(params){
- return get('help_doc/detail',params)
- }
|