baogong.js 517 B

1234567891011121314151617181920212223
  1. import service from '@/utils/request'
  2. export const ProcessInspectionRecordsItemAdd = (data) => {
  3. return service({
  4. url:'/mes_server/facility/ProcessInspectionRecordsItemAdd',
  5. method: 'post',
  6. data
  7. })
  8. }
  9. export const AdditionalInspectionRecordAdd = (data) => {
  10. return service({
  11. url:'/mes_server/facility/AdditionalInspectionRecordAdd',
  12. method: 'post',
  13. data
  14. })
  15. }
  16. export const getMac = (data) => {
  17. return service({
  18. url: 'http://127.0.0.1:8090/init',
  19. method: 'get',
  20. data
  21. })
  22. }