嗨森逛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

63 lines
1.5 KiB

import { Injectable } from '@angular/core';
import {environment} from '../../environments/environment';
import {HttpClient} from '@angular/common/http';
import {CommonsService} from './commons.service';
@Injectable({
providedIn: 'root'
})
export class UserService {
constructor(
private http: HttpClient,
private common: CommonsService
) { }
/**
* 校验是否填写过密码
*
* @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);
});
}
/**
* 查询用户列表
*
* @param paramsObject 对象
* @param callBack 回调
*/
public getListUser(paramsObject: object, callBack) {
this.http.get(environment.baseUrl + 'highUser/getListUser?' + this.common.getWhereCondition(paramsObject)).subscribe(data => {
callBack(data);
});
}
/**
* 禁用启用当前用户
*
* @param userId 用户id
* @param callBack 返回参数
*/
public forbiddenUser(userId: number, callBack) {
this.http.get(environment.baseUrl + 'highUser/forbiddenUser?userId=' + userId).subscribe(data => {
callBack(data);
});
}
}