zouyu
2023-12-01 985fcc2faa569d25d4626a5280f9e7852afd0589
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import request from '@/router/axios'
 
export function fetchScheduleList(query) {
  return request({
    url: '/mes/productionSchedul/page',
    method: 'get',
    params: query
  })
}
 
export function fetchScheduleById(id) {
  return request({
    url: '/mes//productionSchedul/'+id,
    method: 'get',
  })
}