This commit is contained in:
hh
2022-01-11 17:05:48 +08:00
parent b263304da1
commit 71ec949be7
24 changed files with 2596 additions and 45 deletions

View File

@ -0,0 +1,41 @@
import request from '@/utils/request'
// 分布专家信息
export function getExpert() {
return request({
url: '/v1/index/distribution/expert',
method: 'get'
})
}
// 分布实验室信息
export function laboratory() {
return request({
url: '/v1/index/distribution/laboratory',
method: 'get'
})
}
// 分布需求信息
export function demand() {
return request({
url: '/v1/index/distribution/demand',
method: 'get'
})
}
// 分布技术成果信息
export function achievement() {
return request({
url: '/v1/index/distribution/achievement',
method: 'get'
})
}
// 分布技术成果信息
export function company() {
return request({
url: '/v1/index/distribution/company',
method: 'get'
})
}