fix:mlogbdefectjiekoushengming

This commit is contained in:
shijing 2025-01-09 11:35:24 +08:00
parent f93eb0fe89
commit faf6358eab
1 changed files with 21 additions and 0 deletions

View File

@ -298,6 +298,27 @@ export default {
}, },
}, },
}, },
mlogbdefect: {
list: {
name: "列表",
req: async function (data) {
return await http.get(`${config.API_URL}/wpm/mlogbdefect/`, data);
},
},
create: {
name: "创建",
req: async function (data) {
return await http.post(`${config.API_URL}/wpm/mlogbdefect/`, data);
},
},
delete: {
name: "删除",
req: async function (id) {
return await http.delete(`${config.API_URL}/wpm/mlogbdefect/${id}/`);
},
},
},
mlogbw: { mlogbw: {
list: { list: {
name: "列表", name: "列表",