story_books.htm
5.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
<title>连载图书列表</title>
<link href="css/base.css" rel="stylesheet" type="text/css">
<script language="javascript" src="js/main.js"></script>
<script language="javascript" src="../include/js/dedeajax2.js"></script>
<script language="javascript" src="js/story.js"></script>
<style type="text/css">
<!--
#addCatalog {
position:absolute;
left:455px;
top:64px;
width:325px;
height:238px;
z-index:2;
background-color: #F2FDDB;
border:1px solid #889D8F;
padding:6px;
display:none
}
#editCatalog {
position:absolute;
left:455px;
top:64px;
width:325px;
height:238px;
z-index:1;
background-color: #F2FDDB;
border:1px solid #889D8F;
padding:6px;
display:none
}
-->
</style>
</head>
<body background='images/allbg.gif' leftmargin='8' topmargin='8'>
<div class="bodytitle">
<div class="bodytitleleft"></div>
<div class="bodytitletxt">小说书目管理 <a href="../book" target="_blank">[查看首页]</a></div>
</div>
<table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="tbtitle" style=" background:#CFCFCF;">
<tr>
<td bgcolor="#EDF9D5" background='images/tbg.gif'>
<table width='96%' cellpadding='0' cellspacing='0'>
<tr>
<td width='30%' height="13"><strong>图书列表</strong></td>
<td align='right'>
[<a href="story_books.php?ischeck=1"><u>未审核的图书</u></a>]
[<a href="story_add.php"><u>新增图书</u></a>]
[<a href="story_catalog.php"><u>栏目管理</u></a>]
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="98%" border="0" cellpadding="5" cellspacing="1" align="center" style=" border:1px solid #CFCFCF;border-top:none;line-height:31px;margin:auto;">
<tr>
<td style="background:#ffffff;padding:2px 2px 2px 2px;" >
<form name='form1' action='story_books.php' method='get'>
<table width="96%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="13%" align="center">关键字:</td>
<td width="27%"><input name="keyword" type="text" id="keyword" value="<?php echo $keyword; ?>" size="30" class='alltxt' /></td>
<td width="18%">
<select name="catid" id="catid">
<option value='0'>请选择栏目</option>
<?php
foreach($btypes as $k=>$v){
echo "<option value='$k'>$v</option>\r\n";
if(isset($stypes[$k]))
{
foreach($stypes[$k] as $kk=>$vv)
{
echo "<option value='$kk'> --$vv</option>\r\n";
}
}
}
?>
</select>
</td>
<td width="42%"><input type="submit" name="Submit" value="搜 索" class='np coolbg'/></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<form name='form2'>
<table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" style=" margin-top:3px; margin-bottom:3px; line-height:31px;background:#cfcfcf;">
<tr align="center" height="28" bgcolor="#FBFCE2">
<td>选择</td>
<td>图书封面</td>
<td>图书名称</td>
<td>隶属栏目</td>
<td>创建时间</td>
<td>审核</td>
<td>管理项目</td>
</tr>
{dede:datalist}
<?php
if($fields['ischeck'] == 1){
$fields['ischeck']='已审核';
}else{
$fields['ischeck']='<font color="red">未审核</font> <a href="story_books.php?action=checked&id='.$fields['bid'].'">审核</a>';
}
?>
<tr bgcolor="#FFFFFF" height="26" align="center" onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';"align="center">
<td width="8%"> <input type='checkbox' name='ids' value='{dede:field.bid/}' class='np' /> </td>
<td width="8%">
<?php
if($fields['litpic']!=''){
echo "<img src='{$fields['litpic']}' style='padding:2px' height='50'>";
}else{
echo "<img src='images/booknopic.gif' style='padding:2px' height='50'>";
}
?>
</td>
<td width="28%">
<?php
echo "<a href='../book/book.php?bid={$fields['bid']}' target='_blank'>".$fields['bookname']."</a>";
if($fields['booktype']!=1) echo "(<font color='#558A20'>小说</font>内容:{$fields['postnum']})";
else echo "(<font color='#AB8110'>漫画</font>内容:{$fields['postnum']})";
?>
</td>
<td width="12%"> {dede:field.classname/}</td>
<td width="12%">{dede:field.senddate function=GetDateMK(@me)/}</td>
<td width="12%"> <?php echo $fields['ischeck']; ?> </td>
<td align="left">
<?php if($fields['booktype']!=1){ ?>
<a href='story_add_content.php?bookid=<?php echo $fields['bid']; ?>'>添加</a> |
<?php }else{ ?>
<a href='story_add_photo.php?bookid=<?php echo $fields['bid']; ?>'>添加</a> |
<?php } ?>
<a href='story_edit.php?bookid=<?php echo $fields['bid']; ?>'>修改</a> |
<a href='story_list_content.php?bookid=<?php echo $fields['bid']; ?>'>内容</a> <br />
<a href='story_list_chapter.php?bookid=<?php echo $fields['bid']; ?>'>章节</a> |
<a href='javascript:DelStory(<?php echo $fields['bid']; ?>)'>删除</a>
</td>
</tr>
{/dede:datalist}
<tr>
<td colspan='7' bgcolor="#ffffff" height='30'>
<a href="javascript:selAll()" class="coolbg">全选</a>
<a href="javascript:noSelAll()" class="coolbg">取消</a>
<a href="javascript:DelAllBooks()" class="coolbg">删除</a>
</td>
</tr>
</table>
</form>
<table width="98%" border="0" cellpadding="5" cellspacing="1" align="center" style=" border:1px solid #CFCFCF;line-height:31px;margin:auto;">
<tr>
<td bgcolor="#F9FCEF" align="center">{dede:pagelist listsize=5 /}</td>
</tr>
</table>
</div>
</body>
</html>