modal-selectrecord.html 1.2 KB

123456789101112131415161718192021222324
  1. <ion-modal-view>
  2. <ion-header-bar class="bar bar-header">
  3. <button class="button button-clear button-calm" ng-click="cancel('m');">取消</button>
  4. <h1 class="title">选择要报销的消费</h1>
  5. </ion-header-bar>
  6. <ion-content>
  7. <!--<div class="item item-divider divider-font">本月</div>-->
  8. <ul class="list">
  9. <li class="item item-checkbox item-icon-right" ng-repeat="record in recordlist">
  10. <i class="icon" style="color:{{record.type_modal.icon_color}}" ng-class="record.type_modal.icon"></i>
  11. {{record.description}}
  12. <span class="item-note assertive">¥{{record.amount}}</span>
  13. <p>{{record.spend_date | date:'yyyy-MM-dd'}}</p>
  14. <label class="checkbox">
  15. <input type="checkbox" ng-model="record.selected" ng-click="selectRecord(record)">
  16. </label>
  17. </li>
  18. </ul>
  19. </ion-content>
  20. <div class="bar bar-footer bar-dark footer-div record-count-div">
  21. <span class="record-count-span">合计:¥<label for="">{{amountSum}}</label></span>
  22. <button ng-click="ok();" class="button pull-right button-calm" ng-disabled="amountSum==0">确定</button>
  23. </div>
  24. </ion-modal-view>