This commit is contained in:
lcw
2026-01-12 10:40:05 +08:00
parent eb27d2bd11
commit 5d913a3cf4
10 changed files with 20736 additions and 183 deletions

17
src/api/badwgl.js Normal file
View File

@ -0,0 +1,17 @@
import request from "@/utils/request";
const api = "/bagl/mosty-base";
export const getDwglnfo = (id) => {
return request({
url: api + "/baxx/dwgl/getInfo/" + id,
method: "POST",
});
};
export const editDwglEdit = (data) => {
return request({
url: api + "/baxx/dwgl/edit",
method: "POST",
data,
});
};