初始上传
This commit is contained in:
31
addon/pc/source/os/api/cms/help.js
Executable file
31
addon/pc/source/os/api/cms/help.js
Executable file
@@ -0,0 +1,31 @@
|
||||
import http from "../../utils/http"
|
||||
|
||||
/**
|
||||
* 获取帮助列表
|
||||
*/
|
||||
export function helpList(params) {
|
||||
return http({
|
||||
url: "/api/helpclass/lists",
|
||||
data: params
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取帮助详情
|
||||
*/
|
||||
export function helpDetail(params) {
|
||||
return http({
|
||||
url: "/api/help/info",
|
||||
data: params
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取帮助详情
|
||||
*/
|
||||
export function helpOther(params) {
|
||||
return http({
|
||||
url: "/api/help/page",
|
||||
data: params
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user