|
|
@@ -19,7 +19,7 @@ |
|
|
|
<script src="/static/web/js/admin.main.js"></script> |
|
|
|
<script> |
|
|
|
function checkSubmit() { |
|
|
|
if (document.form1.title.value == '') { |
|
|
|
if (document.form1.title.value == "") { |
|
|
|
ShowMsg("请输入专题标题"); |
|
|
|
document.form1.title.focus(); |
|
|
|
return false; |
|
|
@@ -32,12 +32,12 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
function CheckVal(id) { |
|
|
|
var notename = $DE('notename' + id); |
|
|
|
var arcid = $DE('arcid' + id); |
|
|
|
if (arcid.value != "") { |
|
|
|
var notename = $DE("notename" + id); |
|
|
|
var arcid = $DE("arcid" + id); |
|
|
|
if (arcid.value != '') { |
|
|
|
if (notename.value == "") { |
|
|
|
$DE('notename' + id).focus(); |
|
|
|
ShowMsg('请输入' + id + '名称'); |
|
|
|
$DE("notename" + id).focus(); |
|
|
|
ShowMsg("请输入" + id + "名称"); |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
@@ -59,7 +59,7 @@ |
|
|
|
<input type="hidden" name="arcrank" value="<?php echo $arcRow['arcrank']?>"> |
|
|
|
<input type="hidden" name="source" value="本站"> |
|
|
|
<input type="hidden" name="dopost" value="save"> |
|
|
|
<table width="98%" align="center" id="needset" class="maintable my-3"> |
|
|
|
<table width="98%" align="center" class="maintable my-3"> |
|
|
|
<tr> |
|
|
|
<td bgcolor="#f5f5f5" class="admin-td">发布专题</td> |
|
|
|
</tr> |
|
|
|