You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.2 KiB
68 lines
1.2 KiB
import request from '@/axios'; |
|
|
|
export const getList = (current, size, params) => { |
|
return request({ |
|
url: '/api/logpm-basic/material/list', |
|
method: 'get', |
|
params: { |
|
...params, |
|
current, |
|
size, |
|
} |
|
}) |
|
} |
|
|
|
export const getListMaterial = (current, size, params) => { |
|
return request({ |
|
url: '/api/logpm-basic/material/list', |
|
method: 'get', |
|
params: { |
|
...params, |
|
current, |
|
size, |
|
} |
|
}) |
|
} |
|
export const $_getListMaterial = (params) => { |
|
return request({ |
|
url: '/api/logpm-basic/material//findPidList', |
|
method: 'get', |
|
params, |
|
}) |
|
} |
|
export const getDetail = (id) => { |
|
return request({ |
|
url: '/api/logpm-basic/material/detail', |
|
method: 'get', |
|
params: { |
|
id |
|
} |
|
}) |
|
} |
|
|
|
export const remove = (ids) => { |
|
return request({ |
|
url: '/api/logpm-basic/material/remove', |
|
method: 'post', |
|
params: { |
|
ids, |
|
} |
|
}) |
|
} |
|
|
|
export const add = (row) => { |
|
return request({ |
|
url: '/api/logpm-basic/material/submit', |
|
method: 'post', |
|
data: row |
|
}) |
|
} |
|
|
|
export const update = (row) => { |
|
return request({ |
|
url: '/api/logpm-basic/material/submit', |
|
method: 'post', |
|
data: row |
|
}) |
|
} |
|
|
|
|