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.
29 lines
606 B
29 lines
606 B
// 审理单查询 |
|
import request from '@/axios'; |
|
|
|
// 查询内部审理单查询 |
|
export const getInnerReviewList = (data) => { |
|
return request({ |
|
url: '/api/blade-desk/QA/ReviewSheet/listReviewRedoScrap', |
|
method: 'post', |
|
data |
|
}); |
|
}; |
|
|
|
// 内部审理单-审理 |
|
export const fillInnerReview = (params) => { |
|
return request({ |
|
url: '/api/blade-desk/QA/ReviewSheet/reviewSelf', |
|
method: 'get', |
|
params |
|
}); |
|
}; |
|
|
|
// erp审理单列表 |
|
export const getErpReviewList = (data) => { |
|
return request({ |
|
url: '/api/blade-desk/QA/ReviewSheet/listErp', |
|
method: 'post', |
|
data |
|
}); |
|
}; |