fix: MES对接

This commit is contained in:
2023-12-01 17:22:35 +08:00
parent 80205987e9
commit b9f18e997f
22 changed files with 634 additions and 36 deletions

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: 'api/mes/addScrap',
method: 'post',
data
})
}
export default { add }