summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/components/customer/customer.component.html
blob: 9bf6c5ab3636d4dd152b018f83d7c7b0e860d228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!--
    Copyright (C) 2019 CMCC, Inc. and others. All rights reserved.

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

            http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->
<div class="content">
  <div class="customer">
    <div class="customer_title">
      <div class="customers">
        <span>Customer</span>
        <img src="./assets/images/customer04.png" alt="" (click)="this.customeradd  = !this.customeradd">
      </div>
    </div>
    <div class="customer_detail">
      <div class="customer_add" *ngIf="customeradd">
        <input nz-input placeholder="Input customer name" class="customer_name" nzSize="default">
        <button nz-button nzType="primary" class="customer_addbut">Add</button>
      </div>
      <div class="customer_list">
        <ul>
          <li class="active"><img src="./assets/images/customer05.png" alt=""><span>name</span><i
              class="anticon anticon-delete" nzType="info"></i></li>
          <li><img src="./assets/images/customer05.png" alt=""><span>name</span><i class="anticon anticon-delete"
              nzType="info"></i></li>
          <li><img src="./assets/images/customer05.png" alt=""><span>name</span><i class="anticon anticon-delete"
              nzType="info"></i></li>
          <li><img src="./assets/images/customer05.png" alt=""><span>name</span><i class="anticon anticon-delete"
              nzType="info"></i></li>
          <li><img src="./assets/images/customer05.png" alt=""><span>name</span><i class="anticon anticon-delete"
              nzType="info"></i></li>
          <li><img src="./assets/images/customer05.png" alt=""><span>name</span><i class="anticon anticon-delete"
              nzType="info"></i></li>
          <li><img src="./assets/images/customer05.png" alt=""><span>name</span><i class="anticon anticon-delete"
              nzType="info"></i></li>
          <li><img src="./assets/images/customer05.png" alt=""><span>name</span><i class="anticon anticon-delete"
              nzType="info"></i></li>
        </ul>
      </div>
    </div>
  </div>
  <div class="services_type">
    <div class="services_type_title">
      <div class="servicess">
        <span>Services Type</span>
        <img src="./assets/images/customer03.png" alt="" (click)="this.servicesadd  = !this.servicesadd ">
      </div>
    </div>
    <div class="services_type_detail">
      <div class="services_add" *ngIf="servicesadd">
        <input nz-input placeholder="Input services type" class="services_name" nzSize="default">
        <button nz-button nzType="primary" class="services_addbut">Add</button>
      </div>
      <div class="services_list">
        <div style="padding:0 20px;">
          <ul>
            <li><span>Type1</span><i class="anticon anticon-delete" nzType="info"></i></li>
            <li><span>Type2</span><i class="anticon anticon-delete" nzType="info"></i></li>
            <li><span>Type3</span><i class="anticon anticon-delete" nzType="info"></i></li>
          </ul>
        </div>
      </div>
    </div>
  </div>
  <div class="chearts">
    <div class="Cu">
      <p>Instance Count of Customer</p>
      <app-pie [initData]="CUChartInit" [chartData]="CUChartData"></app-pie>
      <div class="legend"></div><span>users</span>
    </div>
    <div class="type">
      <p>Instance Count of Service Type</p>
      <app-bar [initData]="serviceInit" [chartData]="serviceData"></app-bar>
    </div>
  </div>
</div>