YNICTE/FO/Views/CDMS/ViewTaste.cshtml

28 lines
917 B
Plaintext
Raw Normal View History

2020-10-12 14:39:23 +09:00
@model NP.Model.VMCRoom
@{
Layout = "~/Views/Shared/_LayoutContents.cshtml";
}
@if (Model.status > 0)
{
@Html.Partial("Contents", Model)
}
@section scriptsHeader{
<style type="text/css">
.hidecontent{position: fixed; top: -10000px; display: none;}
.mobileiframe{
position: fixed; top: 100px; bottom: 200px; left: 0; right: 0;
}
</style>
}
@section scripts{
<script>
$(document).ready(function () {
2021-08-23 15:10:15 +09:00
if (@Model.ErrLi.longval > 0 ) {
2024-11-05 14:53:08 +09:00
msg("진행중인 학습회차가 존재합니다. 해당회차 완료후 진행해주세요.<br/><br/>과목명 : @(Model.ErrLi.strval)<br/>회차명 : @(Model.ErrLi.intval4)회. @(Model.ErrLi.strval2)", null, null, null, "self.close()");
2021-08-23 15:10:15 +09:00
}
else if (@Model.status == 0) {
2020-10-12 14:39:23 +09:00
self.close();
}
2021-08-23 15:10:15 +09:00
});
2020-10-12 14:39:23 +09:00
</script>
}