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.
11 lines
247 B
11 lines
247 B
|
4 months ago
|
// 审理单查询
|
||
|
|
import request from '@/axios';
|
||
|
|
|
||
|
|
// 查询内部审理单查询
|
||
|
|
export const getInnerReviewList = (data) => {
|
||
|
|
return request({
|
||
|
|
url: '/api/blade-desk/QA/ReviewSheet/listReviewRedoScrap',
|
||
|
|
method: 'post',
|
||
|
|
data
|
||
|
|
});
|
||
|
|
};
|