4 changed files with 28 additions and 6 deletions
@ -0,0 +1,16 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
import { ApiTable, basicAction } from '$utils' |
||||
|
|
||||
|
export function getPerformanceSummary() {//查询
|
||||
|
return (dispatch) => basicAction({ |
||||
|
type: "get", |
||||
|
dispatch: dispatch, |
||||
|
actionType: "GET_PERFORMANCE_SUMMARY", |
||||
|
url: `${ApiTable.getPerformanceSummary}`, |
||||
|
msg: { option: "查询业绩汇总表" }, |
||||
|
reducer: { name: "performanceSummaryList", params: { noClear: true } }, |
||||
|
}); |
||||
|
} |
||||
|
|
||||
|
|
Loading…
Reference in new issue