summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.ts
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-09-29 13:15:41 +0800
committercyuamber <xuranyjy@chinamobile.com>2019-09-29 13:15:52 +0800
commitf1a0ffa2e0323a61141453c56f12218e3e57a141 (patch)
tree98eeeaf3bea1a27ea3386d356a801db199d35f18 /usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.ts
parent831a305ed9f1bf0027f3450dd41e901eafcb7dc4 (diff)
feat:top card code split into new components of service-list page
Change-Id: I1095c2c56aeb097d7d5318a4287afbf5f4adfcd8 Issue-ID: USECASEUI-307 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.ts')
-rw-r--r--usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.ts b/usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.ts
new file mode 100644
index 00000000..6004fb8e
--- /dev/null
+++ b/usecaseui-portal/src/app/views/services/services-list/top-card/top-card.component.ts
@@ -0,0 +1,19 @@
+import { Component, OnInit, Input } from '@angular/core';
+
+@Component({
+ selector: 'app-top-card',
+ templateUrl: './top-card.component.html',
+ styleUrls: ['./top-card.component.less']
+})
+export class TopCardComponent implements OnInit {
+ @Input() serviceDomain: string;
+ @Input() failedNum: number;
+ @Input() successNum: number;
+ @Input() inProgressNum: number;
+ @Input() serviceDetailName: string;
+ constructor() { }
+
+ ngOnInit() {
+ }
+
+}