bug fixed

This commit is contained in:
cxc
2022-10-31 17:45:39 +08:00
parent fd5e278fa7
commit d2163317fe
31 changed files with 1946 additions and 443 deletions

View 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,
});