This commit is contained in:
clay
2022-01-15 20:55:38 +08:00
parent 5356c8b948
commit 8e9cf7b833
15 changed files with 782 additions and 563 deletions

View File

@@ -31,3 +31,35 @@ export function getNode(data) {
data:data
})
}
// 查询测试列表
export function getArticleList(data) {
return request({
url: '/web/articlelist',
method: 'post',
data:data
})
}
// 查询测试列表
export function crumbs(id) {
return request({
url: '/web/crumbs',
method: 'post',
data:{
id:id
}
})
}
// 查询测试列表
export function banner(type) {
return request({
url: '/web/banner',
method: 'post',
data:{
type:type
}
})
}