zouyu
2024-02-29 363678a54142e62fdd4ca39a0db5c54af1a704dc
src/api/plan/productionschedul.js
@@ -10,7 +10,7 @@
export function fetchScheduleById(id) {
  return request({
    url: '/mes/productionSchedul/'+id,
    url: '/mes/productionSchedul/selTime/'+id,
    method: 'get',
  })
}
@@ -19,6 +19,14 @@
  return request({
    url: '/mes/productionSchedul/fillTime',
    method: 'put',
    data: data
  })
}
export function checkTimeLines(data) {
  return request({
    url: '/mes/productionSchedul/checkTimeLines',
    method: 'post',
    data: data
  })
}
@@ -36,4 +44,12 @@
    method: 'post',
    data: data
  })
}
}
export function updateState(data) {
  return request({
    url: '/mes/productionSchedul/updateState',
    method: 'post',
    data: data
  })
}