9
當我刪除一個元素作爲滑動列表時,滑動選項保持打開狀態,我希望此元素被刪除並關閉;對於刪除離子列表刪除,顯示選項
<ion-item>
<p><h2>{{detail.descripcion}}</h2></p>
<p>{{detail.observacion}} </p>
<p>{{detail.total_base}} + {{detail.total_iva}} = {{detail.total_pagar}}</p>
<span class="badge badge-dark">{{detail.total_items}}</span>
<ion-option-button class="button-balanced" ng-click="sust_item(detail,1)">
-1
</ion-option-button>
<ion-option-button class="button-balanced" ng-click="add_item(detail,1)">
+1
</ion-option-button>
</ion-item>
代碼:
$scope.del_order = function(item, index) {
$scope.orders_list.splice(index, 1);
//$scope.confirmDelete(item, index);
};
刪除項目和刷卡選項保持開放:
**很好的快速回答!** @beaver –
如果你欣賞的回答,請接受它,並投票... :) – beaver
其表示需要15分投票,導致我太新,讓我得到15,並確定我會投票你回答。 –