home.html 737 B

123456789101112131415
  1. <ion-view>
  2. <ion-content scroll="false">
  3. <div style="text-align: center;font-size: 20px;font-family: '微软雅黑';font-weight: bold;opacity: 0.6;margin-top: 5%;">测试数据表格汇总</div>
  4. <button ng-click="doRefresh()" class="button button-calm button-small" style="font-weight: bold;font-size: 14px;font-family: '微软雅黑';margin: 5% 0 5% 5%;">刷新任务</button>
  5. <ion-scroll direction="y" class="pList-scroll">
  6. <ion-refresher pulling-text="下拉刷新" on-refresh="doRefresh()"></ion-refresher>
  7. <ion-list>
  8. <ion-item ng-repeat = "excal in excals" href="#/line">
  9. {{excal.list}}
  10. </ion-item>
  11. </ion-list>
  12. </ion-scroll>
  13. </ion-content>
  14. </ion-view>