自动审核数量提示

This commit is contained in:
cxc
2022-12-07 11:24:31 +08:00
parent 698e012ef3
commit ada2709ab3

View File

@ -0,0 +1,22 @@
import request from "@/utils/request";
// 获取未审核数量
export const getUnApprovalCount = (name) =>
request({
url: "/app/map/handleReadCount",
method: "get",
params: {
name,
type: "1",
},
});
// 重置未审核
export const resetUnApprovalCount = (name) =>
request({
url: "/app/map/handleReadCount",
method: "get",
params: {
name,
type: "3",
},
});