1234567891011121314151617181920 |
- <ion-modal-view>
- <ion-header-bar>
- <button class="button button-clear" ng-click="closeModalChkOutside('cancel')">取消</button>
- <h1 class="title">
- <span>签到范围外</span>
- </h1>
- </ion-header-bar>
- <ion-content>
- <div class="item item-divider">在签到范围之外,请选择理由</div>
- <a class="item item-icon-right" ng-click="closeModalChkOutside('ok',0)">外勤
- <i class="icon ion-chevron-right icon-accessory"></i>
- </a>
- <a class="item item-icon-right" ng-click="closeModalChkOutside('ok',1)">出差
- <i class="icon ion-chevron-right icon-accessory"></i>
- </a>
- <a class="item item-icon-right" ng-click="closeModalChkOutside('ok',2)">其他
- <i class="icon ion-chevron-right icon-accessory"></i>
- </a>
- </ion-content>
- </ion-modal-view>
|