嗨森逛PC管理端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
high-web/src/app/services/user.service.ts

36 lines
835 B

4 years ago
import { Injectable } from '@angular/core';
import {environment} from '../../environments/environment';
import {HttpClient} from '@angular/common/http';
@Injectable({
providedIn: 'root'
})
export class UserService {
constructor(private http: HttpClient) { }
/**
*
*
* @param userId id
* @param callBack
*/
public passwordIsEmpty(userId: number, callBack) {
this.http.get(environment.baseUrl + 'bsUser/passwordIsEmpty?userId=' + userId).subscribe(data => {
callBack(data);
});
}
/**
*
* @param param
* @param callBack
*/
public editPassword(param: object, callBack) {
this.http.post(environment.baseUrl + 'bsUser/editPassword', param).subscribe(data => {
callBack(data);
});
}
}