Guest User

Untitled

a guest
Nov 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <div>
  2. <h1>Pagina Principal<h1>
  3. </div>
  4. <div>
  5. <h3>Simular<h3>
  6. </div>
  7. <div class="row">
  8. @{Html.RenderPartial("Partials/Teste/Simular", new SimularViewModel(cpf: Model.Cliente.Cpf, idCampanha: Model.Ocorrencia.IdCampanha));}
  9. </div>
  10. <div>
  11. <h3>opções<h3>
  12. </div>
  13. <div class="row">
  14. @{Html.RenderPartial("Partials/Cadastro/_Opcoes", new CadastroViewModel(cpf: Model.Cliente.Cpf, idCampanha: Model.Ocorrencia.IdCampanha));}
  15. </div>
  16.  
  17. <div>
  18. <label>texto</label>
  19. <label>texto</label>
  20. </div>
  21. <div>
  22. @Html.ActionLink("Ir para Simulação", "Index", "Simular",
  23. new { cpf = Model.Cpf, origem = ViewBag.Origem},
  24. new { @class = "btn btn-brand float-right btn btn-brand float-right" })
  25. </div>
  26.  
  27. <div>
  28. @Html.DropDownListFor(model => model.Status, Model.StatusOcorrencias.Select(so => new SelectListItem() { Text = so.Status, Value = so.Id.ToString() }), "Selecione", new
  29. {
  30. @class = "form-control m-input m-input--square",
  31. @id = "dllStatus",
  32. style = "width: 100%"
  33. })
  34. </div>
  35. <div>
  36. @Html.TextAreaFor(x => x.Observacao, new { @class = "form-control m-input", maxlength = "500" })
  37. </div>
Add Comment
Please, Sign In to add comment