skiy 3 gadi atpakaļ
vecāks
revīzija
8bf87cc6bf

+ 2 - 1
angular.json

@@ -69,7 +69,8 @@
         "serve": {
           "builder": "@angular-devkit/build-angular:dev-server",
           "options": {
-            "browserTarget": "learn:build"
+            "browserTarget": "learn:build",
+            "proxyConfig": "proxy.conf.json"
           },
           "configurations": {
             "production": {

+ 1 - 1
proxy.conf.json

@@ -7,7 +7,7 @@
     "secure": false
   },
   "/api/*": {
-    "target": "http://localhost:3000",
+    "target": "http://localhost:3001",
     "pathRewrite": {
       "^/api": ""
     },

+ 5 - 5
src/app/routes/pc-article/pc-article.component.html

@@ -26,20 +26,20 @@
         <thead>
             <tr>
                 <th>Content</th>
-                <th>Url</th>
                 <th>Evaluate Num</th>
-                <th>Forward Num</th>
-                <th>Forward Num</th>
+                <th>Good Num</th>
+                <th>Down Num</th>
+                <th>Create Time</th>
                 <th>Operation</th>
             </tr>
         </thead>
         <tbody>
             <tr *ngFor="let data of basicTable.data">
                 <td>{{data.content}}</td>
-                <td>{{data.url}}</td>
                 <td>{{data.evaluate_num}}</td>
-                <td>{{data.forward_num}}</td>
                 <td>{{data.good_num}}</td>
+                <td>{{data.down_num}}</td>
+                <td>{{data.createTime}}</td>
                 <td>
                     <a (click)="goToinfo(data.id)">Info</a>
                     <nz-divider nzType="vertical"></nz-divider>

+ 1 - 1
src/app/routes/pc-article/pc-article.component.ts

@@ -54,7 +54,7 @@ export class PcArticleComponent implements OnInit {
   // 获取用户数据
   getData() {
     console.log('获取用户数据');
-    this.http.get("/api/article/all", this.page).then((res: any) => {
+    this.http.get("/api/admin/allpost", this.page).then((res: any) => {
       if (res.code === 1) {
         this.listData = res.data
       }

+ 0 - 47
src/app/routes/pc-community/pc-community.component.html

@@ -1,47 +0,0 @@
-<div class="content">
-    <!-- 筛选内容 -->
-    <form nz-form nz-row nzJustify="start" [formGroup]="searchForm">
-        <nz-form-item nz-col [nzSpan]="6">
-            <div nz-row>
-                <nz-form-label nz-col [nzSpan]="10">Name</nz-form-label>
-                <nz-form-control nz-col [nzSpan]="14">
-                    <input nz-input name="userName" type="text" id="userName" formControlName="userName" />
-                </nz-form-control>
-            </div>
-        </nz-form-item>
-        <nz-form-item nz-col [nzSpan]="6">
-        </nz-form-item>
-        <nz-form-item nz-col [nzSpan]="6">
-        </nz-form-item>
-        <nz-form-item nz-col [nzSpan]="6">
-            <div nz-row nzJustify="space-around">
-                <button nz-button nzType="primary" (click)="search()">Screen</button>
-                <button nz-button nzType="default" (click)="reset()">Reset</button>
-            </div>
-        </nz-form-item>
-    </form>
-    <!-- 数据表单 -->
-    <nz-table #basicTable class="mine-table" [nzData]="listData" [nzPageIndex]="page.page" [nzPageSize]="page.size"
-        [nzScroll]="{ x: '1200px', y: '500px' }">
-        <thead>
-            <tr>
-                <th>Avatar</th>
-                <th>Name</th>
-                <th>Description</th>
-                <th>Operation</th>
-            </tr>
-        </thead>
-        <tbody>
-            <tr *ngFor="let data of basicTable.data">
-                <td>
-                    <nz-avatar [nzSize]="50" nzIcon="user" [nzSrc]="data.image"></nz-avatar>
-                </td>
-                <td>{{data.name}}</td>
-                <td>{{data.description}}</td>
-                <td>
-
-                </td>
-            </tr>
-        </tbody>
-    </nz-table>
-</div>

+ 0 - 7
src/app/routes/pc-community/pc-community.component.less

@@ -1,7 +0,0 @@
-.content{
-    width: 100%;
-    min-height: 100%;
-}
-.mine-table{
-    height: 600px;
-}

+ 0 - 25
src/app/routes/pc-community/pc-community.component.spec.ts

@@ -1,25 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { PcCommunityComponent } from './pc-community.component';
-
-describe('PcCommunityComponent', () => {
-  let component: PcCommunityComponent;
-  let fixture: ComponentFixture<PcCommunityComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      declarations: [ PcCommunityComponent ]
-    })
-    .compileComponents();
-  });
-
-  beforeEach(() => {
-    fixture = TestBed.createComponent(PcCommunityComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});

+ 0 - 76
src/app/routes/pc-community/pc-community.component.ts

@@ -1,76 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-import { FormBuilder, FormGroup } from '@angular/forms';
-// 网络请求
-import { HttpService } from '../../share/http/http';
-
-@Component({
-  selector: 'app-pc-community',
-  templateUrl: './pc-community.component.html',
-  styleUrls: ['./pc-community.component.less']
-})
-export class PcCommunityComponent implements OnInit {
-
-  // 筛选表单
-  searchForm!: FormGroup;
-
-  // 数据列表
-  listData: Array<any> = [];
-  // 页码
-  page: any = {
-    page: 1, size: 20
-  };
-
-  constructor(private fb: FormBuilder, private http: HttpService) { }
-
-  ngOnInit(): void {
-    // 筛选表单
-    this.searchForm = this.fb.group({
-      userName: [""],
-      email: [""],
-      super: [""],
-    })
-
-    // 获取所有用户
-    this.getData();
-  }
-
-  // 重置筛选
-  reset() {
-    this.searchForm.reset()
-    this.getData();
-  }
-
-  //筛选
-  search() {
-    console.log(this.searchForm.value);
-  }
-
-  // 获取用户数据
-  getData() {
-    console.log('获取用户数据');
-    this.http.get("/api/community/allcommunity", this.page).then((res: any) => {
-      if (res.code === 1) {
-        this.listData = res.data
-      }
-    })
-  }
-
-  // 设置为超级管理员
-  setSuper(id: any) {
-    this.http.get("/api/users/super", { id: id }).then((res: any) => {
-      if (res.code === 1) {
-        this.getData()
-      }
-    })
-  }
-
-  // 设置为普通会员
-  setOrdinary(id: any) {
-    this.http.get("/api/users/unsuper", { id: id }).then((res: any) => {
-      if (res.code === 1) {
-        this.getData()
-      }
-    })
-  }
-
-}

+ 3 - 3
src/app/routes/pc-home/pc-home.component.ts

@@ -48,7 +48,7 @@ export class PcHomeComponent implements OnInit {
   // 获取用户数据
   getData() {
     console.log('获取用户数据');
-    this.http.get("/api/users/all", this.page).then((res: any) => {
+    this.http.get("/api/admin/alluser", {...this.page}).then((res: any) => {
       if (res.code === 1) {
         this.listData = res.data
       }
@@ -57,7 +57,7 @@ export class PcHomeComponent implements OnInit {
 
   // 设置为超级管理员
   setSuper(id: any) {
-    this.http.get("/api/users/super", { id: id }).then((res: any) => {
+    this.http.get("/api/admin/super", { id: id }).then((res: any) => {
       if (res.code === 1) {
         this.getData()
       }
@@ -66,7 +66,7 @@ export class PcHomeComponent implements OnInit {
 
   // 设置为普通会员
   setOrdinary(id: any) {
-    this.http.get("/api/users/unsuper", { id: id }).then((res: any) => {
+    this.http.get("/api/admin/unsuper", { id: id }).then((res: any) => {
       if (res.code === 1) {
         this.getData()
       }

+ 0 - 1
src/app/routes/pc-message/pc-message.component.html

@@ -1 +0,0 @@
-<p>pc-message works!</p>

+ 0 - 15
src/app/routes/pc-message/pc-message.component.ts

@@ -1,15 +0,0 @@
-import { Component, OnInit } from '@angular/core';
-
-@Component({
-  selector: 'app-pc-message',
-  templateUrl: './pc-message.component.html',
-  styleUrls: ['./pc-message.component.less']
-})
-export class PcMessageComponent implements OnInit {
-
-  constructor() { }
-
-  ngOnInit(): void {
-  }
-
-}

+ 1 - 0
src/app/routes/pc-topic/pc-topic.component.html

@@ -0,0 +1 @@
+<p>pc-topic works!</p>

+ 0 - 0
src/app/routes/pc-message/pc-message.component.less → src/app/routes/pc-topic/pc-topic.component.less


+ 6 - 6
src/app/routes/pc-message/pc-message.component.spec.ts → src/app/routes/pc-topic/pc-topic.component.spec.ts

@@ -1,20 +1,20 @@
 import { ComponentFixture, TestBed } from '@angular/core/testing';
 
-import { PcMessageComponent } from './pc-message.component';
+import { PcTopicComponent } from './pc-topic.component';
 
-describe('PcMessageComponent', () => {
-  let component: PcMessageComponent;
-  let fixture: ComponentFixture<PcMessageComponent>;
+describe('PcTopicComponent', () => {
+  let component: PcTopicComponent;
+  let fixture: ComponentFixture<PcTopicComponent>;
 
   beforeEach(async () => {
     await TestBed.configureTestingModule({
-      declarations: [ PcMessageComponent ]
+      declarations: [ PcTopicComponent ]
     })
     .compileComponents();
   });
 
   beforeEach(() => {
-    fixture = TestBed.createComponent(PcMessageComponent);
+    fixture = TestBed.createComponent(PcTopicComponent);
     component = fixture.componentInstance;
     fixture.detectChanges();
   });

+ 15 - 0
src/app/routes/pc-topic/pc-topic.component.ts

@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-pc-topic',
+  templateUrl: './pc-topic.component.html',
+  styleUrls: ['./pc-topic.component.less']
+})
+export class PcTopicComponent implements OnInit {
+
+  constructor() { }
+
+  ngOnInit(): void {
+  }
+
+}

+ 0 - 12
src/app/routes/routes-routing.module.ts

@@ -10,11 +10,9 @@ import { LayoutPcComponent } from '../layout/layout-pc/layout-pc.component';
 import { LayoutPcLoginComponent } from '../layout/layout-pc-login/layout-pc-login.component';
 
 // pc 组件
-import { PcCommunityComponent } from './pc-community/pc-community.component';
 import { PcHomeComponent } from './pc-home/pc-home.component';
 import { PcArticleComponent } from './pc-article/pc-article.component';
 import { InfoComponent } from './pc-article/info/info.component';
-import { PcMessageComponent } from './pc-message/pc-message.component';
 
 import { UploadComponent } from '../component/upload/upload.component'
 
@@ -43,20 +41,12 @@ const routes: Routes = [
         component: PcHomeComponent,
       },
       {
-        path: 'community',
-        component: PcCommunityComponent,
-      },
-      {
         path: 'article',
         component: PcArticleComponent,
       },
       {
         path: 'article/info/:id',
         component: InfoComponent
-      },
-      {
-        path: 'message',
-        component: PcMessageComponent,
       }
 
 
@@ -73,9 +63,7 @@ const routes: Routes = [
     LayoutPcComponent,
     LayoutPcLoginComponent,
     PcHomeComponent,
-    PcCommunityComponent,
     PcArticleComponent,
-    PcMessageComponent,
     InfoComponent,
     UploadComponent
   ],