1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| import request from '@/api/api.js'
| import qs from 'qs'
|
| // 获取班组数据 api/ShiftInfoService/page
| export function getProductionplaninfo (data) {
| return request({
| url: `/api/productionplaninfo/page?${qs.stringify(data)}`,
| method: 'get'
| })
| }
|
| // 新增班次 /shiftinfo/add
| export function addProductionplaninfo(data) {
| return request({
| url: `/api/productionplaninfo/add`,
| method: 'post',
| data
| })
| }
|
| // 编辑班次 /shiftinfo/edit
| export function editProductionplaninfo(data) {
| return request({
| url: '/api/productionplaninfo/edit',
| method: 'post',
| data
| })
| }
|
|