parent
37f2321a4b
commit
dd016f2523
|
|
@ -72,7 +72,7 @@
|
||||||
<td class="estate@(d.sdstate)">@d.sdstatename</td>
|
<td class="estate@(d.sdstate)">@d.sdstatename</td>
|
||||||
<td><a class="btn btn-xxs btn-select" onclick="viewsd(@d.sdno, @d.lectno,@d.tpoint, @(idx++))" href="#">@d.cpoint2</a></td>
|
<td><a class="btn btn-xxs btn-select" onclick="viewsd(@d.sdno, @d.lectno,@d.tpoint, @(idx++))" href="#">@d.cpoint2</a></td>
|
||||||
<td>@d.feedbox</td>
|
<td>@d.feedbox</td>
|
||||||
<td><a class="btn btn-xxs btn-select iscopy@(d.iscopy)" onclick="viewcopy(@d.sdno, @d.lectno)" href="#">@d.copyratename</a></td>
|
<td><a class="btn btn-xxs btn-select iscopy@(d.iscopy)" onclick="viewcopy(@d.sdno, @d.lectno, @string.Format("{0:yyyyMMdd}", d.submittime))" href="#">@d.copyratename</a></td>
|
||||||
<td>@Html.Raw(d.submittimeip)</td>
|
<td>@Html.Raw(d.submittimeip)</td>
|
||||||
<td>@Html.Raw(d.checktimeip)</td>
|
<td>@Html.Raw(d.checktimeip)</td>
|
||||||
@if (!ViewBag.IsSubAdmin96)
|
@if (!ViewBag.IsSubAdmin96)
|
||||||
|
|
@ -215,13 +215,13 @@
|
||||||
"<td class=\"estate{6}\">{7}</td>" +
|
"<td class=\"estate{6}\">{7}</td>" +
|
||||||
"<td><a class=\"btn btn-xxs btn-select viewsd\" onclick=\"viewsd({8}, {0},{22}, {15})\" href=\"#\">{9}</a></td>" +
|
"<td><a class=\"btn btn-xxs btn-select viewsd\" onclick=\"viewsd({8}, {0},{22}, {15})\" href=\"#\">{9}</a></td>" +
|
||||||
"<td>{10}</td>" +
|
"<td>{10}</td>" +
|
||||||
"<td><a class=\"btn btn-xxs btn-select iscopy{11}\" onclick=\"viewcopy({8}, {0})\" href=\"#\">{12}</a></td>" +
|
"<td><a class=\"btn btn-xxs btn-select iscopy{11}\" onclick=\"viewcopy({8}, {0},{23})\" href=\"#\">{12}</a></td>" +
|
||||||
"<td>{13}</td>" +
|
"<td>{13}</td>" +
|
||||||
"<td>{14}</td>" +
|
"<td>{14}</td>" +
|
||||||
"{21}").format(d.lectno, d.userno, d.rnorvt, d.isrebatename, d.asname
|
"{21}").format(d.lectno, d.userno, d.rnorvt, d.isrebatename, d.asname
|
||||||
, d.usernameid, d.sdstate, d.sdstatename, d.sdno, d.cpoint2
|
, d.usernameid, d.sdstate, d.sdstatename, d.sdno, d.cpoint2
|
||||||
, d.feedbox, d.iscopy, d.copyratename, d.submittimeip, d.checktimeip, (i + 1), d.cshape == 2 ? d.sseq : '-', d.studyplacename
|
, d.feedbox, d.iscopy, d.copyratename, d.submittimeip, d.checktimeip, (i + 1), d.cshape == 2 ? d.sseq : '-', d.studyplacename
|
||||||
, d.cname, d.leststr, d.leestr, '@(!ViewBag.IsSubAdmin96)' == 'True' ? d.scomplete : d.scomplete96, d.tpoint));
|
, d.cname, d.leststr, d.leestr, '@(!ViewBag.IsSubAdmin96)' == 'True' ? d.scomplete : d.scomplete96, d.tpoint, d.submittime.substring(0, 10).replaceAll('-', '')));
|
||||||
});
|
});
|
||||||
if (_isprenext) {
|
if (_isprenext) {
|
||||||
viewsd($("#tbody1 tr:eq(" + (_ridx + _saveidx - 1) + ")").attr("data-sdno"), $("#tbody1 tr:eq(" + (_ridx + _saveidx - 1) + ")").attr("data-lectno"), $("#tbody1 tr:eq(" + (_ridx + _saveidx - 1) + ")").attr("data-tpoint"), _ridx + _saveidx);
|
viewsd($("#tbody1 tr:eq(" + (_ridx + _saveidx - 1) + ")").attr("data-sdno"), $("#tbody1 tr:eq(" + (_ridx + _saveidx - 1) + ")").attr("data-lectno"), $("#tbody1 tr:eq(" + (_ridx + _saveidx - 1) + ")").attr("data-tpoint"), _ridx + _saveidx);
|
||||||
|
|
@ -319,11 +319,14 @@
|
||||||
msg2(getint($("#tpoint").val())+"점 이하으로 입력해주세요.");
|
msg2(getint($("#tpoint").val())+"점 이하으로 입력해주세요.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function viewcopy(sdno,lectno) {
|
function viewcopy(sdno, lectno, regdateStr) {
|
||||||
|
if (regdateStr == undefined) {
|
||||||
|
regdateStr = "";
|
||||||
|
}
|
||||||
var winl = (screen.width - 840) / 2;
|
var winl = (screen.width - 840) / 2;
|
||||||
var wint = (screen.height - 410) / 2;
|
var wint = (screen.height - 410) / 2;
|
||||||
var opt = 'height=410, width=840, top=' + wint + ', left=' + winl + ',location=no, noresizable';
|
var opt = 'height=410, width=840, top=' + wint + ', left=' + winl + ',location=no, noresizable';
|
||||||
window.open("http://118.219.255.225:7614/memechecker/score.html?domain=v_lectsd_list&docId="+sdno+"_"+lectno, "iscopyWin", opt);
|
window.open("http://118.219.255.225:7614/memechecker/score.html?domain=v_lectsd_list&docId="+regdateStr + "_" +sdno+"_"+lectno, "iscopyWin", opt);
|
||||||
}
|
}
|
||||||
|
|
||||||
var _authtype = 1;
|
var _authtype = 1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue