participantList.html 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <ion-view style="background-color:#fff" title="报名人员列表">
  2. <div class="bar bar-header bar-header-blue">
  3. <div class="button button-icon icon pus_blue"></div>
  4. <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="gobackToWhere()"></button>
  5. <h1 class="bar_title" style="color: #fff">报名人员列表</h1>
  6. <div class="buttons" ng-if="isShowApplay" ng-click="addApplyPeople()">
  7. <span style="line-height:34px;padding:0 10px;color:#fff;font-size:19px">添加报名</span>
  8. </div>
  9. <!--<span class="icon ion-ios-plus-outline" ng-click="addApplyPerson()" style="font-size: 22px !important;right:8px;color:#fff;padding:8px;"></span>-->
  10. </div>
  11. <ion-content class="has-header" scroll="true" delegate-handle="privateContent"
  12. style="margin:0 auto;max-width:20.5rem;background-color: #f2f2f2">
  13. <!--<ion-refresher pulling-text="" on-refresh="refreshData()" class="home_refresh tabs_refresh" refreshing-text="" pulling-icon-color="#3385ff" refreshing-icon="ion-checkmark-circled" refreshing-icon-color="#3385ff"></ion-refresher>-->
  14. <div class="list">
  15. <div class="item item-avatar item-button-right" ng-repeat="list in allList track by $index"
  16. ng-click="getApplyDetail(list.userid)">
  17. <img ng-src="{{list.photo | imgfilter}}" onerror="javascript:this.src='./img/admin_picter.jpg';"
  18. ng-click="$event.stopPropagation();goPublisher(list.userid)">
  19. <h2 ng-bind="list.username"></h2>
  20. <p ng-bind="list.mobile"></p>
  21. <button class="button button-stable"
  22. ng-click="$event.stopPropagation();deleteActivityUsers(list.userid,list.username)">
  23. &times;
  24. </button>
  25. </div>
  26. </div>
  27. <br>
  28. <br>
  29. <br>
  30. <br>
  31. <br>
  32. <br>
  33. </ion-content>
  34. <div ng-if="isWechat" ng-show="showMessage" class="container">
  35. <span class="message-box">{{messageTitle}}</span>
  36. </div>
  37. <div class="time-picker-mask" ng-show="showTimePicker">
  38. <div class="time-picker-box">
  39. <div class="time-picker-box-title">选择时间</div>
  40. <div>
  41. <div class="time-picker-section">
  42. <div>时</div>
  43. <select ng-model="selectedHour">
  44. <option ng-repeat="hour in hours" value="{{hour}}" ng-bind="hour"></option>
  45. </select>
  46. </div>
  47. <div class="time-picker-section">
  48. <div>分</div>
  49. <select ng-model="selectedMinute">
  50. <option ng-repeat="second in minutes" value="{{second}}" ng-bind="second"></option>
  51. </select>
  52. </div>
  53. </div>
  54. <div>
  55. <button class="submit-button sbg-blue submit-button3" ng-click="getTime()">确定</button>
  56. <button class="submit-button sbg-blue submit-button3" ng-click="getNowTime()">现在</button>
  57. <button class="submit-button sbg-blue submit-button3" ng-click="clearTime()">清空</button>
  58. </div>
  59. </div>
  60. </div>
  61. <div class="modal-box" ng-show="showModal">
  62. <div class="live-broadcast-modal" style="height:500px;">
  63. <p class="self-define-modal-title">报名人员详情</p>
  64. <i ng-click="showModal=false;">&times;</i>
  65. <div style="height: 92%;overflow-y: auto;">
  66. <p ng-repeat="list in applyerDetail track by $index">
  67. <span ng-bind="list.item.text" style="font-size:16px;font-weight: bold;margin-right:10px;"
  68. ng-show="(list.item.type=='configurablePages'&&list.otherObjList.length>0)||(list.item.type!='configurablePages'&&list.itemvalue!='')"></span>
  69. <span ng-bind="list.itemvalue" ng-show="list.item.type!='configurablePages'&&list.itemvalue!=''"></span>
  70. <span ng-show="list.item.type=='configurablePages'&&list.otherObjList.length>0"
  71. ng-click="goToResourceDetail(list)"
  72. style="cursor: pointer;padding:3px 10px; border-radius:5px;border:1px solid #3B8BD0;color:#3B8BD0;">查看详情</span>
  73. </p>
  74. <!--<ion-scroll scroll="true" has-bouncing="true" direction="x" scrollbar-x="false" delegate-handle="scrollimage" class="photo_div" ng-show="liveBroadcastMessage.images.length>0;" style="overflow-x:hidden;overflow-y:hidden;">-->
  75. <!--<a class="photo_img" ng-repeat="image in liveBroadcastMessage.images track by $index">-->
  76. <!--<img ng-src="{{image.photoName|imgfilter}}" style="width:100%;height:85px;" class="back-img" ng-click="shouBigImage($index)"/>-->
  77. <!--</a>-->
  78. <!--</ion-scroll>-->
  79. </div>
  80. </div>
  81. </div>
  82. </ion-view>
  83. <style>
  84. .checkbox input,
  85. .checkbox-icon {
  86. opacity: 1 !important;
  87. }
  88. </style>