沈斌
2018-03-08 f320f1970e5d80a423f377fb3253628bd1e7f5bf
src/app/business/services/http/login.service.ts
@@ -16,7 +16,7 @@
  };
  constructor(private http:HttpClient) { }
  public validate(username:string,password:string):Observable<Authorization>{
      return this.http.post(this.urls.login,{username:username,password:password,mode:"Web"}).map(
      return this.http.post(this.urls.login, {username: username, password: password, mode: 'Web'}).map(
           (res:any) => {
               this.authorization = res;
               return res;