用于退出登录状态。
该方法无结果处理函数以外参数
该方法成功时无返回值,失败时返回 errorMsg
YISModule.Login.web_logout({
success: function () {
that.setState({refreshingState: false, loginState: false});
},
fail: (res) => {
console.log(res);
that.checkLogin();
}
});