From 290cb203306858ae2ef689efaa5b2fd604d9162d Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Wed, 27 Apr 2022 15:45:08 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=96=B0=E5=A2=9E]=E5=88=9B=E5=BB=BA=E5=BC=B9?= =?UTF-8?q?=E5=87=BA=E6=A1=86=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../details-file-category.component.html | 1 + .../details-file-category.component.scss | 0 .../details-file-category.component.ts | 15 ++++++ .../edit-file-category.component.html | 1 + .../edit-file-category.component.scss | 0 .../edit-file-category.component.ts | 15 ++++++ .../license/inform/inform.component.html | 26 +++++----- .../details-update-category.component.html | 1 + .../details-update-category.component.scss | 0 .../details-update-category.component.ts | 15 ++++++ .../edit-update-category.component.html | 1 + .../edit-update-category.component.scss | 0 .../edit-update-category.component.ts | 15 ++++++ .../update-category.component.html | 52 ++++++++++++++++++- .../update-category.component.scss | 20 +++++++ .../update-category.component.ts | 42 ++++++++++++++- src/app/pages/pages.module.ts | 6 ++- .../plan-admin/plan-admin.component.html | 28 +++++----- src/index.html | 1 + src/theme.less | 11 ++-- 20 files changed, 215 insertions(+), 35 deletions(-) create mode 100644 src/app/pages/license/file-category/details-file-category/details-file-category.component.html create mode 100644 src/app/pages/license/file-category/details-file-category/details-file-category.component.scss create mode 100644 src/app/pages/license/file-category/details-file-category/details-file-category.component.ts create mode 100644 src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html create mode 100644 src/app/pages/license/file-category/edit-file-category/edit-file-category.component.scss create mode 100644 src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts create mode 100644 src/app/pages/license/update-category/details-update-category/details-update-category.component.html create mode 100644 src/app/pages/license/update-category/details-update-category/details-update-category.component.scss create mode 100644 src/app/pages/license/update-category/details-update-category/details-update-category.component.ts create mode 100644 src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html create mode 100644 src/app/pages/license/update-category/edit-update-category/edit-update-category.component.scss create mode 100644 src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts diff --git a/src/app/pages/license/file-category/details-file-category/details-file-category.component.html b/src/app/pages/license/file-category/details-file-category/details-file-category.component.html new file mode 100644 index 0000000..9fad21e --- /dev/null +++ b/src/app/pages/license/file-category/details-file-category/details-file-category.component.html @@ -0,0 +1 @@ +
details-file-category works!
diff --git a/src/app/pages/license/file-category/details-file-category/details-file-category.component.scss b/src/app/pages/license/file-category/details-file-category/details-file-category.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/license/file-category/details-file-category/details-file-category.component.ts b/src/app/pages/license/file-category/details-file-category/details-file-category.component.ts new file mode 100644 index 0000000..6d5bd0f --- /dev/null +++ b/src/app/pages/license/file-category/details-file-category/details-file-category.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-details-file-category', + templateUrl: './details-file-category.component.html', + styleUrls: ['./details-file-category.component.scss'] +}) +export class DetailsFileCategoryComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html new file mode 100644 index 0000000..4b2f754 --- /dev/null +++ b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.html @@ -0,0 +1 @@ +edit-file-category works!
diff --git a/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.scss b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts new file mode 100644 index 0000000..94a231e --- /dev/null +++ b/src/app/pages/license/file-category/edit-file-category/edit-file-category.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-edit-file-category', + templateUrl: './edit-file-category.component.html', + styleUrls: ['./edit-file-category.component.scss'] +}) +export class EditFileCategoryComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/license/inform/inform.component.html b/src/app/pages/license/inform/inform.component.html index 52bfa71..aff191f 100644 --- a/src/app/pages/license/inform/inform.component.html +++ b/src/app/pages/license/inform/inform.component.html @@ -19,21 +19,21 @@details-update-category works!
diff --git a/src/app/pages/license/update-category/details-update-category/details-update-category.component.scss b/src/app/pages/license/update-category/details-update-category/details-update-category.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/license/update-category/details-update-category/details-update-category.component.ts b/src/app/pages/license/update-category/details-update-category/details-update-category.component.ts new file mode 100644 index 0000000..381198b --- /dev/null +++ b/src/app/pages/license/update-category/details-update-category/details-update-category.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-details-update-category', + templateUrl: './details-update-category.component.html', + styleUrls: ['./details-update-category.component.scss'] +}) +export class DetailsUpdateCategoryComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html new file mode 100644 index 0000000..2bc99c3 --- /dev/null +++ b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.html @@ -0,0 +1 @@ +edit-update-category works!
diff --git a/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.scss b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts new file mode 100644 index 0000000..02463ab --- /dev/null +++ b/src/app/pages/license/update-category/edit-update-category/edit-update-category.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-edit-update-category', + templateUrl: './edit-update-category.component.html', + styleUrls: ['./edit-update-category.component.scss'] +}) +export class EditUpdateCategoryComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +} diff --git a/src/app/pages/license/update-category/update-category.component.html b/src/app/pages/license/update-category/update-category.component.html index 6a503e4..caf5061 100644 --- a/src/app/pages/license/update-category/update-category.component.html +++ b/src/app/pages/license/update-category/update-category.component.html @@ -1 +1,51 @@ -update-category works!
+