|
|
@@ -45,11 +45,25 @@ function logout() {
|
|
|
if(data.success) {
|
|
|
logoutUuzc();
|
|
|
logoutUuzcJob();
|
|
|
+ logoutMall();
|
|
|
setTimeout("window.location.reload()", 200);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+function logoutMall() {
|
|
|
+ var url = 'https://www.usoftmall.com/logout';
|
|
|
+ $.ajax(url, {
|
|
|
+ dataType: 'jsonp',
|
|
|
+ crossDomain: true,
|
|
|
+ success: function(data) {
|
|
|
+ if(data && data.resultcode == '200'){
|
|
|
+ console.log(data.result.today);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* 通知众创登出
|
|
|
*/
|