Удалил лишние шаблоны для диагнозов
This commit is contained in:
parent
25c1152969
commit
d61c3124bc
@ -29,7 +29,7 @@ namespace PolyclinicWebAppImplementer.Controllers
|
|||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public IActionResult Add(int id, string name, string comment, DateTime dateStart, DateTime? dateStop)
|
public IActionResult Add(string name, string? comment, DateTime dateStart, DateTime? dateStop)
|
||||||
{
|
{
|
||||||
if (HttpContext.Request.Method == "GET")
|
if (HttpContext.Request.Method == "GET")
|
||||||
{
|
{
|
||||||
@ -41,7 +41,6 @@ namespace PolyclinicWebAppImplementer.Controllers
|
|||||||
// TODO прописать UserId
|
// TODO прописать UserId
|
||||||
DiagnoseBindingModel diagnose = new DiagnoseBindingModel
|
DiagnoseBindingModel diagnose = new DiagnoseBindingModel
|
||||||
{
|
{
|
||||||
Id = id,
|
|
||||||
Name = name,
|
Name = name,
|
||||||
Comment = comment,
|
Comment = comment,
|
||||||
DateStartDiagnose = dateStart,
|
DateStartDiagnose = dateStart,
|
||||||
@ -54,7 +53,7 @@ namespace PolyclinicWebAppImplementer.Controllers
|
|||||||
|
|
||||||
[HttpGet]
|
[HttpGet]
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public IActionResult Edit(int id, string name, string comment, DateTime dateStart, DateTime? dateStop)
|
public IActionResult Edit(int id, string name, string? comment, DateTime dateStart, DateTime? dateStop)
|
||||||
{
|
{
|
||||||
if (HttpContext.Request.Method == "GET")
|
if (HttpContext.Request.Method == "GET")
|
||||||
{
|
{
|
||||||
|
@ -34,22 +34,6 @@ namespace PolyclinicWebAppImplementer.Controllers
|
|||||||
{
|
{
|
||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
public IActionResult Diagnose()
|
|
||||||
{
|
|
||||||
if (HttpContext.Request.Method == "POST")
|
|
||||||
{
|
|
||||||
return Redirect("~/Home/Diagnoses");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return View();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public IActionResult Diagnoses()
|
|
||||||
{
|
|
||||||
return View();
|
|
||||||
}
|
|
||||||
public IActionResult Symptom()
|
public IActionResult Symptom()
|
||||||
{
|
{
|
||||||
if (HttpContext.Request.Method == "POST")
|
if (HttpContext.Request.Method == "POST")
|
||||||
|
@ -38,11 +38,6 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_ContentIncludedByDefault Remove="Views\Home\Courses.cshtml" />
|
<_ContentIncludedByDefault Remove="Views\Home\Courses.cshtml" />
|
||||||
<_ContentIncludedByDefault Remove="Views\Home\Diagnoses.cshtml" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<UpToDateCheckInput Remove="Views\Home\Diagnoses.cshtml" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
@{
|
|
||||||
ViewBag.SelectedSiteMenuItem = SiteMenuItems.Diagnose;
|
|
||||||
}
|
|
||||||
<h4>Новая болезнь</h4>
|
|
||||||
<form class="d-flex flex-column" method="post">
|
|
||||||
<div class="row mb-5">
|
|
||||||
<div class="col-3">Название:</div>
|
|
||||||
<div class="col-8"><input type="text" id="name" name="name" /></div>
|
|
||||||
</div>
|
|
||||||
<div class="row mb-5">
|
|
||||||
<div class="col-3">Коментарий:</div>
|
|
||||||
<div class="col-8"><textarea id="comment" name="comment"></textarea></div>
|
|
||||||
</div>
|
|
||||||
<div class="row mb-5">
|
|
||||||
<div class="col-3">Начало:</div>
|
|
||||||
<div class="col-8"><input type="date" id="dateStartInput" name="dateStart" /></div>
|
|
||||||
</div>
|
|
||||||
<div class="row mb-5">
|
|
||||||
<div class="col-3">Конец:</div>
|
|
||||||
<div class="col-8"><input type="date" id="dateStopInput" name="dateStop" /></div>
|
|
||||||
</div>
|
|
||||||
<div class="row mb-5">
|
|
||||||
<div class="col-4">
|
|
||||||
<button class="btn btn-success" type="submit">
|
|
||||||
Сохранить
|
|
||||||
</button>
|
|
||||||
@Html.ActionLink("Отмена", "Diagnoses", "Home", null, new { @class = "btn btn-danger" })
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
@ -1,49 +0,0 @@
|
|||||||
@{
|
|
||||||
ViewBag.SelectedSiteMenuItem = SiteMenuItems.Diagnoses;
|
|
||||||
}
|
|
||||||
<div>
|
|
||||||
<div class="d-flex flex-row">
|
|
||||||
<a class="btn btn-primary" asp-action="Diagnose" asp-controller="Home" title="Добавить">
|
|
||||||
Добавить болезнь
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<table class="table">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th scope="col">Номер</th>
|
|
||||||
<th scope="col">Название</th>
|
|
||||||
<th scope="col">Начало</th>
|
|
||||||
<th scope="col">Конец</th>
|
|
||||||
<th scope="col">Комментарий</th>
|
|
||||||
<th scope="col"></th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
@{
|
|
||||||
int count = 10;
|
|
||||||
for (int i = 0; i < count; i++)
|
|
||||||
{
|
|
||||||
<tr>
|
|
||||||
<th scope="row">@i</th>
|
|
||||||
<td>синдром Мюнхгаузена</td>
|
|
||||||
<td>12.04.2024</td>
|
|
||||||
<td>17.05.2024</td>
|
|
||||||
<td>заболевание, при котором человек постоянно симулирует или преувеличивает симптомы болезней, чтобы привлечь внимание окружающих.</td>
|
|
||||||
<td class="d-flex">
|
|
||||||
<a class="btn btn-danger me-1" title="Удалить">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-trash-fill" viewBox="0 0 16 16">
|
|
||||||
<path d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5M8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5m3 .5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 1 0" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
<a class="btn btn-warning text-light" title="Редактировать" asp-action="Diagnose" asp-controller="Home">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-pencil-fill" viewBox="0 0 16 16">
|
|
||||||
<path d="M12.854.146a.5.5 0 0 0-.707 0L10.5 1.793 14.207 5.5l1.647-1.646a.5.5 0 0 0 0-.708zm.646 6.061L9.793 2.5 3.293 9H3.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.207zm-7.468 7.468A.5.5 0 0 1 6 13.5V13h-.5a.5.5 0 0 1-.5-.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.5-.5V10h-.5a.5.5 0 0 1-.175-.032l-.179.178a.5.5 0 0 0-.11.168l-2 5a.5.5 0 0 0 .65.65l5-2a.5.5 0 0 0 .168-.11z" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
Loading…
Reference in New Issue
Block a user