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
332 B
13 lines
332 B
import { basicAction } from '@peace/utils'
|
|
import { ApiTable } from '$utils'
|
|
|
|
export function putxinxi (data) {
|
|
return dispatch => basicAction({
|
|
type: 'post',
|
|
data,
|
|
dispatch: dispatch,
|
|
actionType: 'PUT_XINXI',
|
|
url: ApiTable.yujingguanli,
|
|
msg: { option: '发送信息' },
|
|
});
|
|
}
|