parent
7b96057e73
commit
347df94481
|
|
@ -97,10 +97,10 @@ else
|
||||||
<th>제출자</th>
|
<th>제출자</th>
|
||||||
<td id="userinfo"></td>
|
<td id="userinfo"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
@*<tr>
|
||||||
<th>제출내용</th>
|
<th>제출내용</th>
|
||||||
<td id="atext"></td>
|
<td id="atext"></td>
|
||||||
</tr>
|
</tr>*@
|
||||||
<tr>
|
<tr>
|
||||||
<th>첨부파일</th>
|
<th>첨부파일</th>
|
||||||
<td id="fileinfo"></td>
|
<td id="fileinfo"></td>
|
||||||
|
|
@ -232,11 +232,11 @@ else
|
||||||
function cblectsd() {
|
function cblectsd() {
|
||||||
var d = capResult.obj;
|
var d = capResult.obj;
|
||||||
$("#userinfo").text("[{0}]{1} | {2}".format(d.isrebatename, d.asname, d.usernameid));
|
$("#userinfo").text("[{0}]{1} | {2}".format(d.isrebatename, d.asname, d.usernameid));
|
||||||
if (getdb(d.atext) == "") {
|
//if (getdb(d.atext) == "") {
|
||||||
$("#atext").html("- 미제출");
|
// $("#atext").html("- 미제출");
|
||||||
} else {
|
//} else {
|
||||||
$("#atext").html(getdb(d.atext).replace(/\n/gi, "<br />"));
|
// $("#atext").html(getdb(d.atext).replace(/\n/gi, "<br />"));
|
||||||
}
|
//}
|
||||||
var _html = "- 제출파일 없음<br />";
|
var _html = "- 제출파일 없음<br />";
|
||||||
if (getdb(d.fileurl) != "") {
|
if (getdb(d.fileurl) != "") {
|
||||||
_html = "<a href=\"/aCommon/DownFile?fno={0}&loginfo=&issubject=1\" title=\"다운로드\"><i class=\"fa fa-paperclip\"></i> <span class=\"fileitem\">{1}</span></a><br />".format(d.fileno, d.orgname);
|
_html = "<a href=\"/aCommon/DownFile?fno={0}&loginfo=&issubject=1\" title=\"다운로드\"><i class=\"fa fa-paperclip\"></i> <span class=\"fileitem\">{1}</span></a><br />".format(d.fileno, d.orgname);
|
||||||
|
|
|
||||||
|
|
@ -106,10 +106,10 @@
|
||||||
<th>제출자</th>
|
<th>제출자</th>
|
||||||
<td id="userinfo"></td>
|
<td id="userinfo"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
@*<tr>
|
||||||
<th>제출내용</th>
|
<th>제출내용</th>
|
||||||
<td id="atext"></td>
|
<td id="atext"></td>
|
||||||
</tr>
|
</tr>*@
|
||||||
<tr>
|
<tr>
|
||||||
<th>첨부파일</th>
|
<th>첨부파일</th>
|
||||||
<td id="fileinfo"></td>
|
<td id="fileinfo"></td>
|
||||||
|
|
@ -240,11 +240,11 @@
|
||||||
function cblectsd() {
|
function cblectsd() {
|
||||||
var d = capResult.obj;
|
var d = capResult.obj;
|
||||||
$("#userinfo").text("[{0}]{1} | {2}".format(d.isrebatename, d.asname, d.usernameid));
|
$("#userinfo").text("[{0}]{1} | {2}".format(d.isrebatename, d.asname, d.usernameid));
|
||||||
if (getdb(d.atext) == "") {
|
//if (getdb(d.atext) == "") {
|
||||||
$("#atext").html("- 미제출");
|
// $("#atext").html("- 미제출");
|
||||||
} else {
|
//} else {
|
||||||
$("#atext").html(getdb(d.atext).replace(/\n/gi, "<br />"));
|
// $("#atext").html(getdb(d.atext).replace(/\n/gi, "<br />"));
|
||||||
}
|
//}
|
||||||
var _html = "- 제출파일 없음<br />";
|
var _html = "- 제출파일 없음<br />";
|
||||||
if (getdb(d.fileurl) != "") {
|
if (getdb(d.fileurl) != "") {
|
||||||
_html = "<a href=\"/aCommon/DownFile?fno={0}&loginfo=&issubject=1\" title=\"다운로드\"><i class=\"fa fa-paperclip\"></i> <span class=\"fileitem\">{1}</span></a><br />".format(d.fileno, d.orgname);
|
_html = "<a href=\"/aCommon/DownFile?fno={0}&loginfo=&issubject=1\" title=\"다운로드\"><i class=\"fa fa-paperclip\"></i> <span class=\"fileitem\">{1}</span></a><br />".format(d.fileno, d.orgname);
|
||||||
|
|
|
||||||
|
|
@ -42,15 +42,15 @@
|
||||||
</dl>
|
</dl>
|
||||||
<form id="sform" method="post" enctype="multipart/form-data">
|
<form id="sform" method="post" enctype="multipart/form-data">
|
||||||
<dl class="teskCont">
|
<dl class="teskCont">
|
||||||
<dt>제출내용</dt>
|
<dt>과제파일첨부</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<table class="evaDetail">
|
<table>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
@*<tr>
|
||||||
<td colspan="2" class="teskTxt">
|
<td colspan="2" class="teskTxt">
|
||||||
<textarea name="atext" id="atext" cols="30" rows="10" class="teskTxt">@(Model.LectSD.atext??"")</textarea>
|
<textarea name="atext" id="atext" cols="30" rows="10" class="teskTxt">@(Model.LectSD.atext??"")</textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>*@
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2">
|
<td colspan="2">
|
||||||
<div class="teskFilex">
|
<div class="teskFilex">
|
||||||
|
|
@ -95,7 +95,7 @@
|
||||||
});
|
});
|
||||||
function save() {
|
function save() {
|
||||||
if (getBytes(val("atext")) < 1 && $("input[name=file1]").val() == "") {
|
if (getBytes(val("atext")) < 1 && $("input[name=file1]").val() == "") {
|
||||||
msg("제출내용을 입력해주세요.");
|
msg("첨부된 파일이 없습니다.과제를 업로드 후 제출 버튼을 눌러주세요.");
|
||||||
} else {
|
} else {
|
||||||
confirmtoggle(true, "제출하시겠습니까?", "savego()");
|
confirmtoggle(true, "제출하시겠습니까?", "savego()");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -366,7 +366,7 @@
|
||||||
.evaDetail td span {vertical-align:middle; font-size:12pt; color:#0068b7;}
|
.evaDetail td span {vertical-align:middle; font-size:12pt; color:#0068b7;}
|
||||||
.evaDetail td img {vertical-align:middle; margin-left:5px;}
|
.evaDetail td img {vertical-align:middle; margin-left:5px;}
|
||||||
.evaDetail td.evadGray {background:#ebebeb;}
|
.evaDetail td.evadGray {background:#ebebeb;}
|
||||||
|
.teskCont .evaDetail th, .teskCont .evaDetail td {font-size:15pt;line-height: 1.6em;}
|
||||||
|
|
||||||
@media (max-width:1000px) {
|
@media (max-width:1000px) {
|
||||||
.evaList th,
|
.evaList th,
|
||||||
|
|
@ -424,7 +424,7 @@
|
||||||
|
|
||||||
/* °úÁ¦¾È³» */
|
/* °úÁ¦¾È³» */
|
||||||
.teskCont {padding:30px 0;}
|
.teskCont {padding:30px 0;}
|
||||||
.teskCont > dt {position:relative; padding-left:22px; font-size:13pt;}
|
.teskCont > dt {position:relative; padding-left:22px; font-size:15pt;}
|
||||||
.teskCont > dt span {color:#ff0000; font-size:13pt;}
|
.teskCont > dt span {color:#ff0000; font-size:13pt;}
|
||||||
.teskCont > dt a {display:block; position:absolute; right:0; bottom:0; width:110px; height:50px; line-height:50px; text-align:center; color:#fff; background:#383838;}
|
.teskCont > dt a {display:block; position:absolute; right:0; bottom:0; width:110px; height:50px; line-height:50px; text-align:center; color:#fff; background:#383838;}
|
||||||
.teskCont > dt:before {content:""; display:block; width:16px; height:16px; border:solid 4px #000; box-sizing:border-box; position:absolute; left:0; top:50%; margin-top:-8px; border-radius: 100% 100% 100% 100%; -moz-border-radius: 100% 100% 100% 100%; -webkit-border-radius: 100% 100% 100% 100%;}
|
.teskCont > dt:before {content:""; display:block; width:16px; height:16px; border:solid 4px #000; box-sizing:border-box; position:absolute; left:0; top:50%; margin-top:-8px; border-radius: 100% 100% 100% 100%; -moz-border-radius: 100% 100% 100% 100%; -webkit-border-radius: 100% 100% 100% 100%;}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue