emergencyReason.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <div class="modal-header">
  2. <div class="modal-title fontcolor-two fontsizes-14">不受理原因
  3. <button type="button" class="close pull-right" ng-click="cancel()">×</button>
  4. </div>
  5. </div>
  6. <div class="modal-body center">
  7. <div class="col-md-12">
  8. <textarea rows="4" id="reason" name="reason" ng-model="rejectRemark">
  9. </textarea>
  10. </div>
  11. </div>
  12. <div class="modal-footer modelfooter-hint pointfont wt_con">
  13. <div class="hintfooterleft pull-left wt_ok" ng-click="ok()" translate="modal.button.OK ">OK</div>
  14. <div class="hintfooterright pull-right wt_cancel" ng-click="cancel() " translate="modal.button.CANCEL ">Cancel</div>
  15. </div>
  16. <style>
  17. textarea {
  18. width: 100%;
  19. margin-top: 5px;
  20. }
  21. .wt_con {
  22. /* border-top: 1px solid #ccc; */
  23. }
  24. .wt_ok {
  25. color: #00554A;
  26. }
  27. .wt_cancel {
  28. color: #666666;
  29. }
  30. .wt_ok:hover {
  31. background: #DBE8E6;
  32. color: #00554A;
  33. }
  34. .wt_cancel:hover {
  35. background: #DBE8E6;
  36. color: #00554A;
  37. }
  38. </style>