modal-back.html 1.6 KB

12345678910111213141516171819202122232425262728
  1. <ion-modal-view>
  2. <ion-header-bar class="bar bar-header">
  3. <button class="button button-clear button-calm" ng-click="cancel('back');">取消</button>
  4. <h1 class="title">反馈</h1>
  5. <button class="button button-clear button-calm" ng-click="ok('back');">完成</button>
  6. </ion-header-bar>
  7. <ion-content>
  8. <div class=" item item-divider"></div>
  9. <div class="list notice-input">
  10. <label class="item item-input">
  11. <span class="input-label">问题:</span>
  12. <input type="text" class="notice-title" placeholder="输入问题" ng-model="noticedata.back_title" ng-if="noticedata.disablededit.showeditback" focus-me="true">
  13. <label for="" ng-if="!noticedata.disablededit.showeditback">{{noticedata.back_title}}</label>
  14. </label>
  15. <div class="item item-divider dividertext">
  16. <label>提出问题,让被通知的员工逐一回答</label>
  17. </div>
  18. <ion-item class="item item-icon-right" type="item-text-wrap" ng-disabled="noticedata.disablededit.showeditback" ng-click="checkend_dd('back');">
  19. 截止日期
  20. <label class="label-right-text item-note">{{noticedata.back_enddd | date:"y年MM月dd日"}}</label>
  21. <i class="icon ion-chevron-right icon-accessory"></i>
  22. </ion-item>
  23. </div>
  24. </ion-content>
  25. <div class="bar bar-footer bar-balanced footer" ng-click='delete("back");' ng-show="noticedata.showbackDelete">
  26. <div class="title">删除</div>
  27. </div>
  28. </ion-modal-view>