bonus-material-app/src/services/information.js

19 lines
338 B
JavaScript
Raw Normal View History

2025-06-30 18:01:49 +08:00
import { http } from '@/utils/http'
// 获取铭牌信息
export const getInfoByCode = (data) => {
return http({
method: 'GET',
url: '/material/ma_machine/getInfoByCode',
data,
})
}
// 更新铭牌
export const updateInfo = (data) => {
return http({
method: 'PUT',
url: '/material/ma_machine',
data,
})
}