pc-home.component.ts 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import { Component, OnInit } from '@angular/core';
  2. import { FormBuilder, FormGroup } from '@angular/forms';
  3. // 网络请求
  4. import { HttpService } from '../../share/http/http';
  5. @Component({
  6. selector: 'app-pc-home',
  7. templateUrl: './pc-home.component.html',
  8. styleUrls: ['./pc-home.component.less']
  9. })
  10. export class PcHomeComponent implements OnInit {
  11. // 筛选表单
  12. searchForm!: FormGroup;
  13. // 数据列表
  14. listData: Array<any> = [];
  15. // 页码
  16. page: any = {
  17. page: 1, size: 20
  18. };
  19. constructor(private fb: FormBuilder, private http: HttpService) { }
  20. ngOnInit(): void {
  21. // 筛选表单
  22. this.searchForm = this.fb.group({
  23. userName: [""],
  24. email: [""],
  25. super: [""],
  26. })
  27. // 获取所有用户
  28. this.getData();
  29. }
  30. // 重置筛选
  31. reset() {
  32. this.searchForm.reset()
  33. this.getData();
  34. }
  35. //筛选
  36. search() {
  37. console.log(this.searchForm.value);
  38. }
  39. // 获取用户数据
  40. getData() {
  41. console.log('获取用户数据');
  42. this.http.get("/api/admin/alluser", {...this.page}).then((res: any) => {
  43. if (res.code === 1) {
  44. this.listData = res.data
  45. }
  46. })
  47. }
  48. // 设置为超级管理员
  49. setSuper(id: any) {
  50. this.http.get("/api/admin/super", { id: id }).then((res: any) => {
  51. if (res.code === 1) {
  52. this.getData()
  53. }
  54. })
  55. }
  56. // 设置为普通会员
  57. setOrdinary(id: any) {
  58. this.http.get("/api/admin/unsuper", { id: id }).then((res: any) => {
  59. if (res.code === 1) {
  60. this.getData()
  61. }
  62. })
  63. }
  64. }