This commit is contained in:
clay
2022-01-14 22:07:22 +08:00
parent 05e116af0d
commit 5356c8b948
11 changed files with 529 additions and 99 deletions

33
src/api/index.js Normal file
View File

@@ -0,0 +1,33 @@
/**
* @author: Clay
* @date: 2022/1/14 13:26
* @descriptionindex
* @email: clay@hchyun.com
*/
import request from '@/utils/request'
// 查询测试列表
export function getStatistic(data) {
return request({
url: '/web/statistic',
method: 'post',
data:data
})
}
// 查询测试列表
export function getNavigation(data) {
return request({
url: '/web/getnavall',
method: 'post',
data:data
})
}
// 查询测试列表
export function getNode(data) {
return request({
url: '/web/node',
method: 'post',
data:data
})
}

View File

@@ -1,15 +0,0 @@
/**
* @author: Clay
* @date: 2021/12/27 22:50
* @descriptiontest
* @email: clay@hchyun.com
*/
import request from '@/utils/request'
// 查询测试列表
export function test() {
return request({
url: '/sist/test/test',
method: 'get',
})
}