feat:添加cm接口声明

This commit is contained in:
shijing 2024-10-17 15:41:45 +08:00
parent b4bb7b0f9f
commit ee12735ea1
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ export default {
name: "从仓库明细获取无聊标签",
req: async function(data){
return await http.post(
`${config.API_URL}/cm/get_from_mb/`,
`${config.API_URL}/cm/labelmat/get_from_mb/`,
data);
}
},
@ -32,7 +32,7 @@ export default {
name: "从出入库明细获取无聊标签",
req: async function(data){
return await http.post(
`${config.API_URL}/cm/get_from_mioitem/`,
`${config.API_URL}/cm/labelmat/get_from_mioitem/`,
data);
}
},
@ -40,7 +40,7 @@ export default {
name: "从车间库存明细获取无聊标签",
req: async function(data){
return await http.post(
`${config.API_URL}/cm/get_from_wm/`,
`${config.API_URL}/cm/labelmat/get_from_wm/`,
data);
}
},