ShareBuy template before and after Rivets

Created Diff never expires
9 Entfernungen
Zeilen
Gesamt
Entfernt
Wörter
Gesamt
Entfernt
Um diese Funktion weiterhin zu nutzen, aktualisieren Sie auf
Diffchecker logo
Diffchecker Pro
36 Zeilen
20 Hinzufügungen
Zeilen
Gesamt
Hinzugefügt
Wörter
Gesamt
Hinzugefügt
Um diese Funktion weiterhin zu nutzen, aktualisieren Sie auf
Diffchecker logo
Diffchecker Pro
36 Zeilen
<div class="list">
<div class="list">
<label class="item item-input">
<label class="item item-input">
<span class="input-label">Ação</span>
<span class="input-label">Ação</span>
<input type="text" name="symbol">
<input type="text" name="symbol" rv-value="model:symbol" rv-disabled="state.hasSymbol" event-name="blur">
</label>
</label>
<label class="item item-input">
<label class="item item-input">
<span class="input-label">Preço</span>
<span class="input-label">Preço</span>
<input type="number" step="any" name="price">
<input type="number" step="any" name="price" rv-value="model:price | number">
</label>
</label>
<label class="item item-input">
<label class="item item-input">
<span class="input-label">Quantidade</span>
<span class="input-label">Quantidade</span>
<input type="number" step="any" name="quantity">
<input type="number" step="any" name="quantity" rv-value="model:quantity | number">
</label>
</label>
<label class="item item-input">
<label class="item item-input">
<span class="input-label">Data</span>
<span class="input-label">Data</span>
<input type="date" name="date">
<input type="date" name="date" rv-value="model:date">
</label>
</label>
</div>
</div>


<div class="list">
<div class="list">
<div class="item item-divider">
<div class="item item-divider">
Preço Médio
Preço Médio
</div>
</div>
<div class="item row">
<div class="item row">
<div class="col">
<div class="col">
Atual: <span class="current-mean-price">--</span>
Atual: <span class="current-mean-price" rv-text="state.currentMeanPrice | formatCurrency">--</span>
</div>
</div>
<div class="col">
<div class="col">
Após: <span class="mean-price">--</span>
Após: <span class="mean-price" rv-text="state.meanPrice | formatCurrency">--</span>
</div>
</div>
</div>
</div>
</div>
</div>


<button id="remove-buy" class="button button-block button-assertive">
<button id="remove-buy" class="button button-block button-assertive" rv-show="state.isNew | negate">
Remover
Remover
</button>
</button>