Как умножить 2 значения в ионном
Привет, ребята, Как поживаете?Я надеюсь, что вы будете в порядке, ребята, я начал свой новый ионный проект, и проекты работают хорошо, но у меня есть проблема с умножением, пожалуйста, помогите мне, как я могу суммировать 2 значения в ионном и показать в 3-м
<td>{{item.item_qty}}</td>
<td>{{item.product_price}}</td>
я хочу умножить эти 2 значения и показать в 3-м
Спасибо
Что я уже пробовал:
<ion-view style="" class=" " id="page10" title="Orders"> <ion-content class="has-header" padding="true"> <ion-refresher pulling-text="Pull to refresh..." on-refresh="doRefresh()"> </ion-refresher> <style> table { border-collapse: collapse; width: 100%; } th, td { text-align: left; padding: 8px; } tr:nth-child(even){background-color: #f2f2f2} th { background-color: #4CAF50; color: white; } </style> <div style="overflow-x:auto;"> <table> <thead> <tr> <th width="200">Product Qty</th> <th>Product Name</th> <th width="150">Status</th> <th width="150">Total</th> </tr> </thead> <tbody> <tr ng-repeat="item in orders" class="animated fadeInUp"> <td>{{item.item_qty}}</td> <td>{{item.product_name}}</td> <td>{{item.status}}</td> <td>{{item7.product_price}}</td> </tr> </tbody> </table> </div> </ion-content> </ion-view>