12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <ion-view style="background-color:#fff" title="报名人员列表">
- <div class="bar bar-header bar-header-blue">
- <div class="button button-icon icon pus_blue"></div>
- <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="gobackToWhere()"></button>
- <h1 class="bar_title" style="color: #fff">报名人员列表</h1>
- <div class="buttons" ng-if="isShowApplay" ng-click="addApplyPeople()">
- <span style="line-height:34px;padding:0 10px;color:#fff;font-size:19px">添加报名</span>
- </div>
- <!--<span class="icon ion-ios-plus-outline" ng-click="addApplyPerson()" style="font-size: 22px !important;right:8px;color:#fff;padding:8px;"></span>-->
- </div>
- <ion-content class="has-header" scroll="true" delegate-handle="privateContent"
- style="margin:0 auto;max-width:20.5rem;background-color: #f2f2f2">
- <!--<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>-->
- <div class="list">
- <div class="item item-avatar item-button-right" ng-repeat="list in allList track by $index"
- ng-click="getApplyDetail(list.userid)">
- <img ng-src="{{list.photo | imgfilter}}" onerror="javascript:this.src='./img/admin_picter.jpg';"
- ng-click="$event.stopPropagation();goPublisher(list.userid)">
- <h2 ng-bind="list.username"></h2>
- <p ng-bind="list.mobile"></p>
- <button class="button button-stable"
- ng-click="$event.stopPropagation();deleteActivityUsers(list.userid,list.username)">
- ×
- </button>
- </div>
- </div>
- <br>
- <br>
- <br>
- <br>
- <br>
- <br>
- </ion-content>
- <div ng-if="isWechat" ng-show="showMessage" class="container">
- <span class="message-box">{{messageTitle}}</span>
- </div>
- <div class="time-picker-mask" ng-show="showTimePicker">
- <div class="time-picker-box">
- <div class="time-picker-box-title">选择时间</div>
- <div>
- <div class="time-picker-section">
- <div>时</div>
- <select ng-model="selectedHour">
- <option ng-repeat="hour in hours" value="{{hour}}" ng-bind="hour"></option>
- </select>
- </div>
- <div class="time-picker-section">
- <div>分</div>
- <select ng-model="selectedMinute">
- <option ng-repeat="second in minutes" value="{{second}}" ng-bind="second"></option>
- </select>
- </div>
- </div>
- <div>
- <button class="submit-button sbg-blue submit-button3" ng-click="getTime()">确定</button>
- <button class="submit-button sbg-blue submit-button3" ng-click="getNowTime()">现在</button>
- <button class="submit-button sbg-blue submit-button3" ng-click="clearTime()">清空</button>
- </div>
- </div>
- </div>
- <div class="modal-box" ng-show="showModal">
- <div class="live-broadcast-modal" style="height:500px;">
- <p class="self-define-modal-title">报名人员详情</p>
- <i ng-click="showModal=false;">×</i>
- <div style="height: 92%;overflow-y: auto;">
- <p ng-repeat="list in applyerDetail track by $index">
- <span ng-bind="list.item.text" style="font-size:16px;font-weight: bold;margin-right:10px;"
- ng-show="(list.item.type=='configurablePages'&&list.otherObjList.length>0)||(list.item.type!='configurablePages'&&list.itemvalue!='')"></span>
- <span ng-bind="list.itemvalue" ng-show="list.item.type!='configurablePages'&&list.itemvalue!=''"></span>
- <span ng-show="list.item.type=='configurablePages'&&list.otherObjList.length>0"
- ng-click="goToResourceDetail(list)"
- style="cursor: pointer;padding:3px 10px; border-radius:5px;border:1px solid #3B8BD0;color:#3B8BD0;">查看详情</span>
- </p>
- <!--<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;">-->
- <!--<a class="photo_img" ng-repeat="image in liveBroadcastMessage.images track by $index">-->
- <!--<img ng-src="{{image.photoName|imgfilter}}" style="width:100%;height:85px;" class="back-img" ng-click="shouBigImage($index)"/>-->
- <!--</a>-->
- <!--</ion-scroll>-->
- </div>
- </div>
- </div>
- </ion-view>
- <style>
- .checkbox input,
- .checkbox-icon {
- opacity: 1 !important;
- }
- </style>
|