Ahlushko

Untitled

Jun 16th, 2020
1,298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.79 KB | None | 0 0
  1. <div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
  2.     <h5 class="my-0 mr-md-auto font-weight-normal">Таблиця "Транзакції"</h5>
  3.     <nav class="my-2 my-md-0 mr-md-3">
  4.         <a (click)="add = true" class="btn btn-outline-primary mr-2" href="#">Додати транзакцію</a>
  5.         <a (click)="pc.delete()" class="btn btn-outline-primary" href="#">Видалити всі транзакції</a>
  6.     </nav>
  7. </div>
  8. <table class="table table-striped table-bordered">
  9.     <thead class="thead-dark">
  10.         <tr *ngIf="add">
  11.             <td><button (click)="pc.create(comp)" class="btn btn-outline-primary">+</button></td>
  12.             <td><input class="form-control" [(ngModel)]="comp.number" placeholder="Транзакція" type="text"></td>
  13.         </tr>
  14.         <tr>
  15.             <th scope="col"></th>
  16.             <th scope="col">Транзакція</th>
  17.             <th></th>
  18.         </tr>
  19.     </thead>
  20.     <tbody>
  21.         <tr *ngFor="let item of pc.comp; let i = index">
  22.             <th scope="row">{{i+1}}</th>
  23.             <td>
  24.                 <input (blur)="pc.update(item._id)" [(ngModel)]="edit.number" type="text" [placeholder]="item.number" class="myform-control">
  25.             </td>
  26.             <td>
  27.                 <svg (click)="delete(item)" width="45px" class="bi bi-trash-fill btn btn-outline-primary" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
  28.                     <path fill-rule="evenodd" d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1H2.5zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5zM8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5zm3 .5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0v-7z"/>
  29.                 </svg>
  30.             </td>
  31.         </tr>
  32.         <tr>
  33.             <td colspan="3">Результат транзакцій: {{pc.summ}}</td>
  34.         </tr>
  35.     </tbody>
  36. </table>
Advertisement
Add Comment
Please, Sign In to add comment