123456789101112131415161718192021 |
- import request from '@/utils/request'
- export const materialPage = (params) =>
- request({
- url: '/tofly-flow/tfprojectmaterialw/page',
- method: 'get',
- params
- })
- export const fetchRestMaterial = (processId) =>
- request({
- url: '/tofly-flow/tfprojectmaterialw/getListByMatter',
- method: 'get',
- params: { processId }
- })
- export const fetchDispatchedMaterial = (processId) =>
- request({
- url: '/tofly-flow/tfprojectmaterialw/page',
- method: 'get',
- params: { processId, materialTypeList: 2, current: 1, size: 9999 }
- })
|