sidemenu service demand count.

This commit is contained in:
cxc
2022-11-21 16:40:21 +08:00
parent daba128033
commit 136574a8f4
8 changed files with 158 additions and 45 deletions

View File

@ -2,23 +2,29 @@ import request from "@/utils/request";
// 企业服务需求列表
export const listCasDemand = (params) =>
request({
url: "/business/dataReview/listCasDemand/list",
method: "GET",
params,
});
request({
url: "/business/dataReview/listCasDemand/list",
method: "GET",
params,
});
// 企业服务需求详情
export const getCasDemandInfo = (id) =>
request({
url: `/business/dataReview/getCasDemandInfo/${id}`,
method: "GET",
});
request({
url: `/business/dataReview/getCasDemandInfo/${id}`,
method: "GET",
});
// 修改企业服务需求
export const updateCasDemand = (data) =>
request({
url: `/business/dataReview/updateCasDemand`,
method: "PUT",
data,
});
request({
url: `/business/dataReview/updateCasDemand`,
method: "PUT",
data,
});
// 修改企业服务需求
export const deleteCasDemand = (ids) =>
request({
url: `/business/dataReview/listCasDemand/${ids}`,
method: "DELETE",
});