更新机构

/**
* 更新机构
* @param data
* @return {function(*=): *}
*/
export function updateOrgStatus(data, status) {
return dispatch =>
requestJSON(
dispatch,
{method: 'PUT', url: `/xxxx/org`, data},
{type: TYPE.UPDATE_ORG, message: `更新机构状态:${status} 成功`},
{type: TYPE.UPDATE_ORG_ERROR, message: `更新机构状态:${status} 失败`})
}
原文地址:https://www.cnblogs.com/zxyun/p/6183673.html