mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-02 23:46:38 +00:00
作家后台完善
This commit is contained in:
@ -60,7 +60,11 @@
|
||||
<li><input type="text" id="bookIndex" name="bookIndex" class="s_input" ></li>
|
||||
<b>章节内容:</b><li id="contentLi">
|
||||
<textarea name="bookContent" rows="30" cols="80" id="bookContent"
|
||||
class="textarea"></textarea></li>
|
||||
class="textarea"></textarea></li><br/>
|
||||
|
||||
<b>是否收费:</b>
|
||||
<li><input type="radio" name="isVip" value="0" checked >免费
|
||||
<input type="radio" name="isVip" value="1" >收费</li>
|
||||
|
||||
|
||||
<li style="margin-top: 10px"><input type="button" onclick="addBookContent()" name="btnRegister" value="提交"
|
||||
@ -118,13 +122,6 @@
|
||||
|
||||
<script language="javascript" type="text/javascript">
|
||||
|
||||
var bookStatus = getSearchString("bookStatus");
|
||||
if(bookStatus == 1){
|
||||
$("#contentLi").after("<b>是否收费:</b>\n" +
|
||||
" <li><input type=\"radio\" name=\"isVip\" value=\"0\" checked >免费\n" +
|
||||
" <input type=\"radio\" name=\"isVip\" value=\"1\" >收费</li><br/>");
|
||||
}
|
||||
|
||||
|
||||
var lock = false;
|
||||
function addBookContent() {
|
||||
@ -153,11 +150,7 @@
|
||||
}
|
||||
|
||||
|
||||
var isVip = 0;
|
||||
if(bookStatus == 1){
|
||||
|
||||
isVip = $("input:checked[name=isVip]").val();
|
||||
}
|
||||
var isVip = $("input:checked[name=isVip]").val();
|
||||
|
||||
|
||||
|
||||
@ -170,7 +163,7 @@
|
||||
success: function (data) {
|
||||
if (data.code == 200) {
|
||||
|
||||
window.location.href = '/author/index.html';
|
||||
window.location.href = '/author/index_list.html?bookId='+bookId;
|
||||
|
||||
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user