维基小程序后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

47 lines
1.0 KiB

import request from '@/utils/request'
const enterprise = '/enterprise'
export function enterpriseCategoryQueryAll(id) {
return request({
url: `/gateway${enterprise}/enterpriseCategory/enterpriseCategoryQueryAll`,
method: 'post',
data: {
param: {
enterpriseId: id
}
}
})
}
export function enterpriseQueryAll(data) {
return request({
url: `/gateway${enterprise}/enterprise/enterpriseQueryAll`,
method: 'post',
data: {
param: {
incubatorType: data.incubatorType,
pageNum: data.pageNum,
pageSize: data.pageSize
}
}
})
}
export function enterpriseAdditionalQueryById(id) {
return request({
url: `/gateway${enterprise}/enterpriseAdditional/enterpriseAdditionalQueryById`,
method: 'post',
data: {
id: id
}
})
}
export function enterpriseScoreQueryById(id) {
return request({
url: `/gateway${enterprise}/enterpriseScore/enterpriseScoreQueryById`,
method: 'post',
data: {
id: id
}
})
}