fix:mlogbw接口声明

This commit is contained in:
shijing 2025-01-02 17:15:23 +08:00
parent 20328ab6ae
commit 6102c682f9
1 changed files with 26 additions and 0 deletions

View File

@ -298,6 +298,32 @@ export default {
},
},
},
mlogbw: {
list: {
name: "列表",
req: async function (data) {
return await http.get(`${config.API_URL}/wpm/mlogbw/`, data);
},
},
create: {
name: "创建",
req: async function (data) {
return await http.post(`${config.API_URL}/wpm/mlogbw/`, data);
},
},
update: {
name: "更新",
req: async function (id, data) {
return await http.put(`${config.API_URL}/wpm/mlogbw/${id}/`,data);
},
},
del: {
name: "删除",
req: async function (id) {
return await http.delete(`${config.API_URL}/wpm/mlogbw/${id}/`);
},
},
},
handover: {
list: {
name: "值班记录列表",