fix:分配出库对外编号接口声明

This commit is contained in:
shijing 2025-07-31 16:08:04 +08:00
parent 73b657c5de
commit 921bf52761
1 changed files with 7 additions and 1 deletions

View File

@ -595,7 +595,7 @@ export default {
numberOutLast: { numberOutLast: {
name: "最新编号", name: "最新编号",
req: async function (data) { req: async function (data) {
return await http.get(`${config.API_URL}/wpmw/wpr/number_out_last/ `, data); return await http.get(`${config.API_URL}/wpmw/wpr/number_out_last/`, data);
} }
}, },
query: { query: {
@ -604,5 +604,11 @@ export default {
return await http.post(`${config.API_URL}/wpmw/wpr/cquery/`, data); return await http.post(`${config.API_URL}/wpmw/wpr/cquery/`, data);
}, },
}, },
assginNumberOut: {
name: "分配出库对外编号",
req: async function (data) {
return await http.post(`${config.API_URL}/wpmw/wpr/assgin_number_out/`, data);
}
},
}, },
}; };