This commit is contained in:
clay
2021-12-27 23:05:09 +08:00
parent 6d8154dc9e
commit 8b5a97700f
15 changed files with 558 additions and 3 deletions

15
src/api/test.js Normal file
View File

@@ -0,0 +1,15 @@
/**
* @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',
})
}