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.
14 lines
363 B
14 lines
363 B
'use strict';
|
|
|
|
import { ApiTable, basicAction } from '$utils'
|
|
|
|
export function getPush () { //获取推送配置列表
|
|
return dispatch => basicAction({
|
|
type: 'get',
|
|
dispatch: dispatch,
|
|
actionType: 'GET_PUSH',
|
|
url: `${ApiTable.getPush}`,
|
|
msg: { error: '获取推送配置列表失败' },
|
|
reducer: { name: '' }
|
|
});
|
|
}
|
|
|