区域最大承载
This commit is contained in:
parent
b30f1ba95f
commit
7bccc62d32
|
|
@ -0,0 +1,66 @@
|
|||
import request from "@/utils/request";
|
||||
import signMd5Utils from "./signMd5Utils";
|
||||
|
||||
// 列表
|
||||
export function getklList(query) {
|
||||
return request({
|
||||
url: "/large/activity/list",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
export function getklListMessage(query) {
|
||||
return request({
|
||||
url: "/large/activity/listMessage",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
export function getallList(query) {
|
||||
return request({
|
||||
url: "/large/screen/regionalStatistics",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
// 新增菜单
|
||||
export function getklListadd(data) {
|
||||
return request({
|
||||
url: "/large/activity",
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改菜单
|
||||
export function getklListedit(data) {
|
||||
return request({
|
||||
url: "/large/activity",
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除菜单
|
||||
export function getklListremove(id) {
|
||||
return request({
|
||||
url: '/large/activity/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 修改按钮回显
|
||||
export function getklListedithx(id) {
|
||||
return request({
|
||||
url: '/large/activity/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
// 列表
|
||||
export function getlists(query) {
|
||||
return request({
|
||||
url: "/large/activity/listAll",
|
||||
method: "get",
|
||||
params: query,
|
||||
});
|
||||
}
|
||||
Loading…
Reference in New Issue