You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
643 B
42 lines
643 B
1 year ago
|
import request from "@/utils/request";
|
||
|
// 获取列表
|
||
|
export function getList(data) {
|
||
|
return request({
|
||
|
url: "/dmBzzz/getList",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 修改
|
||
|
export function update(data) {
|
||
|
return request({
|
||
|
url: "/dmBzzz/update",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
export function del(data) {
|
||
|
return request({
|
||
|
url: "/dmBzzz/del",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function save(data) {
|
||
|
return request({
|
||
|
url: "/dmBzzz/save",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function getBzryList(data) {
|
||
|
return request({
|
||
|
url: "/dmBzry/getList",
|
||
|
method: "post",
|
||
|
data,
|
||
|
});
|
||
|
}
|