zouyu
2023-11-22 a88c24cf840a39b20fe0fd8af0c0c549d4d0034a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import request from '@/router/axios'
 
export function fetchList(query) {
  return request({
    url: '/mes/splitTask/page',
    method: 'get',
    params: query
  })
}
 
export function addObj(obj) {
  return request({
    url: '/mes/packaging/batchSave',
    method: 'post',
    data: obj
  })
}