lcw
This commit is contained in:
@ -295,7 +295,7 @@ export const Ttbgetupdate = (data) => {
|
||||
// 新增人员、车辆布控
|
||||
export const BkrwinsertEntity = (data) => {
|
||||
return request({
|
||||
url: api + `/jczBkrw/insertEntity`,
|
||||
url: api + `/jczBkry/insertEntity`,
|
||||
method: "POST",
|
||||
data
|
||||
});
|
||||
@ -303,7 +303,7 @@ export const BkrwinsertEntity = (data) => {
|
||||
// 查询人员、车辆布控
|
||||
export const BkrwselectPage = (params) => {
|
||||
return request({
|
||||
url: api + `/jczBkrw/selectPage`,
|
||||
url: api + `/jczBkry/selectPage`,
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
@ -311,19 +311,55 @@ export const BkrwselectPage = (params) => {
|
||||
// 修改查询人员、车辆布控
|
||||
export const BkrweditEntity = (data) => {
|
||||
return request({
|
||||
url: api + `/jczBkrw/editEntity`,
|
||||
url: api + `/jczBkry/editEntity`,
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
};
|
||||
// 删除查询人员、车辆布控
|
||||
export const BkrwdeleteById = (data) => {
|
||||
export const BkrwdeleteById = (id) => {
|
||||
return request({
|
||||
url: api + `/jczBkrw/deleteById`,
|
||||
url: api + `/jczBkry/deleteById/${id}`,
|
||||
method: "delete",
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export const jczBkclInsertEntity = (data) => {
|
||||
return request({
|
||||
url: api + `/jczBkcl/insertEntity`,
|
||||
method: "POST",
|
||||
data
|
||||
});
|
||||
};
|
||||
// 查询人员、车辆布控
|
||||
export const jczBkclSelectPage = (params) => {
|
||||
return request({
|
||||
url: api + `/jczBkcl/selectPage`,
|
||||
method: "get",
|
||||
params
|
||||
});
|
||||
};
|
||||
// 修改查询人员、车辆布控
|
||||
export const jczBkclEntity = (data) => {
|
||||
return request({
|
||||
url: api + `/jczBkcl/editEntity`,
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
};
|
||||
// 删除查询人员、车辆布控
|
||||
export const jczBkclDeleteById = (id) => {
|
||||
return request({
|
||||
url: api + `/jczBkcl/deleteById/${id}`,
|
||||
method: "delete",
|
||||
|
||||
});
|
||||
};
|
||||
|
||||
// 检查站
|
||||
|
||||
// 查询检查站
|
||||
|
Reference in New Issue
Block a user