_SwModalFooter.cshtml 893 B

1234567891011121314
  1. @model ShwasherSys.Models.Modal.ModelFooterModel
  2. @{
  3. var footStyle = Model.FootStyle==""? "text-align: center;": Model.FootStyle;
  4. }
  5. <div class="modal-footer" style="@footStyle">
  6. @if (!Model.IsCancel)
  7. {
  8. <button type="button" class="btn btn-success save-btn waves-effect" style="min-width: 100px; background-color: #678ceb;border: 1px solid #678ceb;" onclick="@Model.SubmitEvent">@Model.SubmitName</button>
  9. }else{
  10. <button type="button" class="btn btn-default waves-effect" data-dismiss="modal" style="min-width:100px;background: #FFFFFF;border: 1px solid #DDDDDD;" onclick="$('#@Model.ModalId').modal('hide')">@Model.CancelName</button>
  11. <button type="button" class="btn btn-success save-btn waves-effect" style="min-width:100px;background-color: #678ceb;border: 1px solid #678ceb;" onclick="@Model.SubmitEvent">@Model.SubmitName</button>
  12. }
  13. </div>