123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <div class="modal-header">
- <div class="modal-title fontcolor-two fontsizes-14">不受理原因
- <button type="button" class="close pull-right" ng-click="cancel()">×</button>
- </div>
- </div>
- <div class="modal-body center">
- <div class="col-md-12">
- <textarea rows="4" id="reason" name="reason" ng-model="rejectRemark">
-
- </textarea>
- </div>
- </div>
- <div class="modal-footer modelfooter-hint pointfont wt_con">
- <div class="hintfooterleft pull-left wt_ok" ng-click="ok()" translate="modal.button.OK ">OK</div>
- <div class="hintfooterright pull-right wt_cancel" ng-click="cancel() " translate="modal.button.CANCEL ">Cancel</div>
- </div>
- <style>
- textarea {
- width: 100%;
- margin-top: 5px;
- }
- .wt_con {
- /* border-top: 1px solid #ccc; */
- }
- .wt_ok {
- color: #00554A;
- }
- .wt_cancel {
- color: #666666;
- }
- .wt_ok:hover {
- background: #DBE8E6;
- color: #00554A;
- }
- .wt_cancel:hover {
- background: #DBE8E6;
- color: #00554A;
- }
- </style>
|