|
@@ -10,8 +10,90 @@
|
|
|
</ion-header>
|
|
|
<ion-content>
|
|
|
<form>
|
|
|
+ <ion-item-divider>
|
|
|
+ Cliente
|
|
|
+ </ion-item-divider>
|
|
|
<ion-item>
|
|
|
- <ion-input type="text" placeholder="Seleccione un cliente"></ion-input>
|
|
|
+ <ion-input type="text" readonly></ion-input>
|
|
|
+ </ion-item>
|
|
|
+ <ion-item-divider>
|
|
|
+ Productos
|
|
|
+ </ion-item-divider>
|
|
|
+ <ion-list>
|
|
|
+ <ion-item (doubleTap)="openOptions()">
|
|
|
+ <ion-avatar item-left>
|
|
|
+ <img src="./assets/images/product.png" />
|
|
|
+ </ion-avatar>
|
|
|
+ <h2>Producto 001</h2>
|
|
|
+ <p>Precio: </p>
|
|
|
+ <p>Cantidad:</p>
|
|
|
+ <p>Subtotal:</p>
|
|
|
+ <div item-right>
|
|
|
+ <button ion-button icon-only>
|
|
|
+ <i class="fa fa-plus"></i>
|
|
|
+ </button>
|
|
|
+ <button ion-button icon-only>
|
|
|
+ <i class="fa fa-minus"></i>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </ion-item>
|
|
|
+ <ion-item>
|
|
|
+ <ion-avatar item-left>
|
|
|
+ <img src="./assets/images/product.png" />
|
|
|
+ </ion-avatar>
|
|
|
+ <h2>Producto 002</h2>
|
|
|
+ <p>Precio: </p>
|
|
|
+ <p>Cantidad:</p>
|
|
|
+ <p>Subtotal:</p>
|
|
|
+ <div item-right>
|
|
|
+ <button ion-button icon-only>
|
|
|
+ <i class="fa fa-plus"></i>
|
|
|
+ </button>
|
|
|
+ <button ion-button icon-only>
|
|
|
+ <i class="fa fa-minus"></i>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </ion-item>
|
|
|
+ <ion-item>
|
|
|
+ <ion-avatar item-left>
|
|
|
+ <img src="./assets/images/product.png" />
|
|
|
+ </ion-avatar>
|
|
|
+ <h2>Producto 003</h2>
|
|
|
+ <p>Precio: </p>
|
|
|
+ <p>Cantidad:</p>
|
|
|
+ <p>Subtotal:</p>
|
|
|
+ <div item-right>
|
|
|
+ <button ion-button icon-only>
|
|
|
+ <i class="fa fa-plus"></i>
|
|
|
+ </button>
|
|
|
+ <button ion-button icon-only>
|
|
|
+ <i class="fa fa-minus"></i>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </ion-item>
|
|
|
+ <ion-item>
|
|
|
+ <ion-avatar item-left>
|
|
|
+ <img src="./assets/images/product.png" />
|
|
|
+ </ion-avatar>
|
|
|
+ <h2>Producto 005</h2>
|
|
|
+ <p>Precio: </p>
|
|
|
+ <p>Cantidad:</p>
|
|
|
+ <p>Subtotal:</p>
|
|
|
+ <div item-right>
|
|
|
+ <button ion-button icon-only>
|
|
|
+ <i class="fa fa-plus"></i>
|
|
|
+ </button>
|
|
|
+ <button ion-button icon-only>
|
|
|
+ <i class="fa fa-minus"></i>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </ion-item>
|
|
|
+ </ion-list>
|
|
|
+ <ion-item-divider>
|
|
|
+ Total
|
|
|
+ </ion-item-divider>
|
|
|
+ <ion-item>
|
|
|
+ <ion-input type="number" value="0" readonly></ion-input>
|
|
|
</ion-item>
|
|
|
</form>
|
|
|
|