story_list_content.htm
4.93 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
<!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" style="padding-left:10px;">小说管理 <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%' border="0" cellpadding='0' cellspacing='0'>
<tr>
<td width='30%' class="tbtitletxt" style="padding-left:10px;"><strong>连载内容列表</strong></td>
<td align='right'>
[<a href="story_books.php"><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;line-height:31px;margin:auto;border-top:none;">
<tr>
<td style="background:#ffffff;padding:3px;" >
<table border="0" cellspacing="0" cellpadding="0" width="98%">
<tr>
<td width='50%'>
<form name='form1' action='story_list_content.php' method='get'>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td style='padding-left:10px;padding-right:10px;'>关键字:</td>
<td style='padding-right:10px;'>
<input name="keyword" type="text" id="keyword" value="<?php echo $keyword; ?>" size="30" class='alltxt' />
</td>
<td style='padding-right:10px;'>
<select name='booktype'>
<option value='-1'>类型</option>
<option value='0'>小说</option>
<option value='1'>漫画</option>
</select>
</td>
<td><input type="submit" name="Submit" value="搜 索" class='np coolbg' /></td>
</tr>
</table>
</form>
</td>
<td align='right'>
<?php
if(!empty($bookid)){
echo "<a href='story_add_content.php?bookid={$bookid}'>添加内容</a> | ";
echo "<a href='story_list_chapter.php?bookid={$bookid}'>本书章节</a> | ";
echo "<a href='story_list_content.php'>所有内容</a>";
}
?>
</td>
</tr>
</table>
</td>
</tr>
</table>
<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" style="background:#FBFCE2;height:26px">
<td width="24%">文章标题</td>
<td width="32%" align='left' style="padding-left:8px;">图书名称/章节名称/章节内序号</td>
<td width="12%">添加时间</td>
<td>管理项目</td>
</tr>
{dede:datalist}
<tr align="center" height='26' bgcolor="#FFFFFF" height="26" align="center" onMouseMove="javascript:this.bgColor='#FCFDEE';" onMouseOut="javascript:this.bgColor='#FFFFFF';">
<td align="center">{dede:field.title/}</td>
<td align='left' style="padding-left:8px;">
<a href='story_list_content.php?bookid={dede:field.bookid/}'>{dede:field.bookname/}</a>
<a href='story_list_content.php?bookid={dede:field.bookid/}&chapid={dede:field.chapterid/}'>{dede:field.chaptername/}</a>{dede:field.sortid/} </td>
<td> {dede:field.addtime function=GetDateMK(@me)/}</td>
<td>
<a href='javascript:PreViewCt({dede:field.id/},{dede:field.booktype/});'>预览</a> |
<?php
if($fields['booktype']==1) $editfile = 'story_photo_edit.php?cid=';
else $editfile = 'story_content_edit.php?cid=';
?>
<a href='<?php echo $editfile.$fields['id']; ?>'>修改</a> |
<a href='javascript:DelStoryContent({dede:field.id/})'>删除</a> </td>
</tr>
{/dede:datalist}
</table>
<table width="98%" border="0" cellpadding="5" cellspacing="1" align="center" style=" border:1px solid #CFCFCF;line-height:31px;margin:auto;">
<tr>
<td style="background:#F9FCEF;" >
{dede:pagelist listsize=5 /}
</td>
</tr>
</table>
</div>
</body>
</html>