choiceResource.html 836 B

123456789101112
  1. <ion-view view-title="选择资源库">
  2. <div class="bar bar-header" style="background-image: none;background-color: #3B8BD0;">
  3. <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
  4. <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
  5. <h1 class="bar_title" style="color: #fff">选择资源库</h1>
  6. </div>
  7. <ion-content delegate-handle="calenderContent" class="has-header">
  8. <div ng-repeat="data in dataList track by $index" align="center" style="margin: 20px">
  9. <button style="background-color: #3B8BD0; border: 1px #3B8BD0 solid; border-radius: 0.5em;width: 300px;height: 43px;font-size: 18px;color: white;" ng-click="choiceReceiver(data.name)">{{data.name}}</button>
  10. </div>
  11. </ion-content>
  12. </ion-view>