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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
| import request from '@/router/axios'
|
|
| export function getPartAllStructureExt(query) {
| return request({
| url: '/mes/bom/bigTreeExt',
| method: 'post',
| data: query
| })
| }
|
| export function addByStructure() {
| return request({
| url: '/mes/bom/addByStructure',
| method: 'post'
| })
| }
|
| export function getPartAllStructure(id) {
| return request({
| url: '/mes/bom/bigTree/' + id,
| method: 'get'
| })
| }
|
| export function addObj(obj) {
| return request({
| url: '/mes/bom',
| method: 'post',
| data: obj
| })
| }
|
| export function fetchList(query) {
| return request({
| url: '/mes/bom/page',
| method: 'get',
| params: query
| })
| }
|
| export function getObj(id) {
| return request({
| url: '/mes/bom/' + id,
| method: 'get'
| })
| }
|
| // export function delObj(id) {
| // return request({
| // url: '/mes/bom/' + id,
| // method: 'delete'
| // })
| // }
|
| export function delObj(ids, event) {
| return request({
| url: '/mes/bom' ,
| method: 'delete',
| data: ids
| })
| }
|
| export function putObj(obj) {
| return request({
| url: '/mes/bom',
| method: 'put',
| data: obj
| })
| }
|
| export function getComponents(bomId) {
| return request({
| url: '/mes/bom/component/' + bomId,
| method: 'get'
| })
| }
| export function changeState(ids, event) {
| return request({
| url: '/mes/bom/state/' + event,
| method: 'post',
| data: ids
| })
| }
|
|