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
29
30
31
32
33
34
35
36
37
38
39
40
| import { axios } from '@/utils/request'
|
| /**
| * 查询生产计划表
| *
| * @author cxy
| */
| export function getProductionPlaninfo (parameter) {
| return axios({
| url: '/productionplaninfo/page',
| method: 'get',
| params: parameter
| })
| }
|
| /**
| * 新增生产计划
| *
| * @author cxy
| */
| export function addProductionPlaninfo (data) {
| return axios({
| url: '/productionplaninfo/add',
| method: 'post',
| data
| })
| }
|
| /**
| * 编辑生产计划
| *
| * @author cxy
| */
| export function editProductionPlaninfo (data) {
| return axios({
| url: '/productionplaninfo/edit',
| method: 'post',
| data
| })
| }
|
|