index
This commit is contained in:
41
src/api/website/home/index.js
Normal file
41
src/api/website/home/index.js
Normal 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'
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user