bug fixed
This commit is contained in:
23
src/api/dataApproval/achivement.js
Normal file
23
src/api/dataApproval/achivement.js
Normal file
@ -0,0 +1,23 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 获取成果审核列表
|
||||
export const expertAchievementList = (params) => request({
|
||||
url: "/business/dataReview/expertAchievementList",
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
// 获取成果详情
|
||||
export const expertAchievementInfo = (params) => request({
|
||||
url: "/business/dataReview/expertAchievementInfo",
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
|
||||
// 修改成果
|
||||
export const updateExpertAchievement = (data) => request({
|
||||
url: "/business/dataReview/updateExpertAchievement",
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
|
||||
|
||||
24
src/api/dataApproval/enterpriseServiceDemand.js
Normal file
24
src/api/dataApproval/enterpriseServiceDemand.js
Normal file
@ -0,0 +1,24 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 企业服务需求列表
|
||||
export const listCasDemand = (params) =>
|
||||
request({
|
||||
url: "/business/dataReview/listCasDemand/list",
|
||||
method: "GET",
|
||||
params,
|
||||
});
|
||||
|
||||
// 企业服务需求详情
|
||||
export const getCasDemandInfo = (id) =>
|
||||
request({
|
||||
url: `/business/dataReview/getCasDemandInfo/${id}`,
|
||||
method: "GET",
|
||||
});
|
||||
|
||||
// 修改企业服务需求
|
||||
export const updateCasDemand = (data) =>
|
||||
request({
|
||||
url: `/business/dataReview/updateCasDemand`,
|
||||
method: "PUT",
|
||||
data,
|
||||
});
|
||||
8
src/api/dataApproval/enterpriseTechnologyDemand.js
Normal file
8
src/api/dataApproval/enterpriseTechnologyDemand.js
Normal file
@ -0,0 +1,8 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 修改企业技术需求审核
|
||||
export const updateTechnologyDemand = (data) => request({
|
||||
url: "/business/dataReview/updateTechnologyDemand",
|
||||
method: 'POST',
|
||||
data
|
||||
})
|
||||
Reference in New Issue
Block a user