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.
13 lines
502 B
13 lines
502 B
'use strict';
|
|
import { RouteTable, RouteRequest, ApiTable, basicAction } from '$utils';
|
|
|
|
export function getReserveItemReport(type) {
|
|
return dispatch => basicAction({
|
|
type: 'get',
|
|
dispatch: dispatch,
|
|
actionType: 'GET_RESERVEITEM_REPORT',
|
|
url: `${ApiTable.getReserveItemReport.replace('{type}', type)}?token=9c62cd15-967f-42dc-a2fd-f79411dfad55`,
|
|
msg: { error: '获取储备项目统计信息失败' },
|
|
reducer: { name: 'reserveItemReport' }
|
|
});
|
|
}
|