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.
15 lines
418 B
15 lines
418 B
'use strict';
|
|
|
|
import { ApiTable, basicAction } from '$utils'
|
|
|
|
export function getWorkOrders () { //获取工单的待办
|
|
console.log('xxxxx',ApiTable.workOrders)
|
|
return dispatch => basicAction({
|
|
type: 'get',
|
|
dispatch: dispatch,
|
|
actionType: 'GET_WORK_ORDERS',
|
|
url: `${ApiTable.workOrders}`,
|
|
msg: { option: '获取工单的待办' },
|
|
reducer: { name: 'workOrders' }
|
|
});
|
|
}
|