fengxiang
2018-03-19 b7aa850069d53ca1cc2aea791e7401216f5b795c
src/app/business/services/http/login.service.ts
@@ -50,9 +50,8 @@
               this.authorization = res;
               const now = new Date();
               // expiredTime,refreshToken,refreshTime 与平台的 token 分开储存
               const expiredTime  = !!this.authorization.expiredTime ? this.authorization.expiredTime.toString() : null;
               this.setRefreshTime();
               localStorage.setItem('expiredTime', expiredTime);
               localStorage.setItem('expiredTime', String(this.authorization.expiredTime));
               localStorage.setItem('refreshToken', this.authorization.refreshToken);
               return res;
           }