"1. 문구숨김처리

- 해당문구 : (나의성적이 수료기준을 충족하였을 경우 아래 수료요청 버튼을 클릭해주세요)
2. 버튼숨김처리
 - 해당버튼 : 수료요청

* 나중에 다시 출력할 수도 있습니다. 삭제 말고 숨김으로 부탁드립니다."
This commit is contained in:
lch 2021-07-01 00:26:21 +00:00
parent a81264f7dd
commit a49013afd1
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<h3 class="grdTitle">
수료여부 : <span>@(Model.Lect.iscomplete == null || Model.Lect.iscomplete == 0 ? "미수료" : "수료")</span>
<span style="color:black">@(Model.Lect.iscomplete == null || Model.Lect.iscomplete == 0 ? "(나의성적이 수료기준을 충족하였을 경우 아래 수료요청 버튼을 클릭해주세요)" : "")</span>
<span style="color:black;display:none;">@(Model.Lect.iscomplete == null || Model.Lect.iscomplete == 0 ? "(나의성적이 수료기준을 충족하였을 경우 아래 수료요청 버튼을 클릭해주세요)" : "")</span>
</h3>
<table class="evaTable">
<thead>
@ -51,7 +51,7 @@
</table>
@if (Model.Lect.iscomplete == null || Model.Lect.iscomplete == 0)
{
<div class="notiBtn bot">
<div class="notiBtn bot" style="display: none;">
<a href="#" onclick="save()">수료 요청</a>
</div>
}