Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1.  
  2. <ion-header style="padding :0%">
  3. <ion-navbar >
  4. <button ion-button menuToggle>
  5. <ion-icon name="menu" ></ion-icon>
  6. </button>
  7. <ion-title>Scan Page</ion-title>
  8. </ion-navbar>
  9. </ion-header>
  10.  
  11. <ion-content class = "bg">
  12. <br><br><br>
  13. <ion-grid>
  14.  
  15. <ion-row>
  16. <ion-col></ion-col>
  17. <ion-col col-auto> <img src="../assets/imgs/logomini.png" alt=""></ion-col>
  18. <ion-col></ion-col>
  19. </ion-row>
  20.  
  21. </ion-grid>
  22. <br><br>
  23.  
  24. <ion-list >
  25. <ion-item class = "dropdown">
  26. <ion-label >Depots</ion-label>
  27.  
  28. <ion-select [(ngModel)]="depNumberValue">
  29. <ion-option *ngFor="let p of depots" value = {{p.Id}} >{{p.name}}</ion-option>
  30. </ion-select>
  31.  
  32. </ion-item>
  33.  
  34. </ion-list>
  35. <ion-refresher slot="fixed" (ionRefresh) = "doRefresh($event)" >
  36. <ion-refresher-content
  37. pullingIcon="arrow-dropdown"
  38. pullingText="Pull to refresh"
  39. refreshingSpinner="circles"
  40. refreshingText="Refreshing...">
  41.  
  42. </ion-refresher-content>
  43. </ion-refresher>
  44.  
  45.  
  46. <div class = "header">
  47.  
  48. Click to scan your product
  49. <br><br><br>
  50. <div>
  51. <button ion-button (click) = "scanBarcode()" color="secondary" outline>Scan Barcode</button>
  52. </div>
  53. <br><br><br><br>
  54. <div *ngIf="show">
  55. Prod num: {{result.text}}
  56. </div>
  57.  
  58. </div>
  59.  
  60.  
  61.  
  62. <ion-footer>
  63. <div class = "header" > <button ion-button color="secondary" (click) = "searchClick()">Search</button></div>
  64.  
  65. </ion-footer>
  66.  
  67.  
  68. </ion-content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement