book_manager.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Document</title>
  7. <link rel="stylesheet" href="../../static/css/minireset.css" />
  8. <link rel="stylesheet" href="../../static/css/common.css" />
  9. <link rel="stylesheet" href="../../static/css/cart.css" />
  10. <link rel="stylesheet" href="../../static/css/bookManger.css" />
  11. </head>
  12. <body>
  13. <div class="header">
  14. <div class="w">
  15. <div class="header-left">
  16. <a href="../../index.html">
  17. <img src="../../static/img/logo.gif" alt=""
  18. /></a>
  19. <h1>图书管理系统</h1>
  20. </div>
  21. <div class="header-right">
  22. <a href="#" class="order">图书管理</a>
  23. <a href="./order_manager.html" class="destory">订单管理</a>
  24. <a href="../../index.html" class="gohome">返回商城</a>
  25. </div>
  26. </div>
  27. </div>
  28. <div class="list">
  29. <div class="w">
  30. <div class="add">
  31. <a href="book_edit.html">添加图书</a>
  32. </div>
  33. <table>
  34. <thead>
  35. <tr>
  36. <th>图片</th>
  37. <th>商品名称</th>
  38. <th>价格</th>
  39. <th>作者</th>
  40. <th>销量</th>
  41. <th>库存</th>
  42. <th>操作</th>
  43. </tr>
  44. </thead>
  45. <tbody>
  46. <tr>
  47. <td>
  48. <img src="../../static/uploads/huozhe.jpg" alt="" />
  49. </td>
  50. <td>活着</td>
  51. <td>
  52. 100.00
  53. </td>
  54. <td>余华</td>
  55. <td>200</td>
  56. <td>400</td>
  57. <td>
  58. <a href="book_edit.html">修改</a><a href="" class="del">删除</a>
  59. </td>
  60. </tr>
  61. <tr>
  62. <td>
  63. <img src="../../static/uploads/huozhe.jpg" alt="" />
  64. </td>
  65. <td>活着</td>
  66. <td>
  67. 100.00
  68. </td>
  69. <td>余华</td>
  70. <td>200</td>
  71. <td>400</td>
  72. <td>
  73. <a href="book_edit.html">修改</a><a href="" class="del">删除</a>
  74. </td>
  75. </tr>
  76. </tbody>
  77. </table>
  78. <div class="footer">
  79. <div class="footer-right">
  80. <div>首页</div>
  81. <div>上一页</div>
  82. <ul>
  83. <li class="active">1</li>
  84. <li>2</li>
  85. <li>3</li>
  86. </ul>
  87. <div>下一页</div>
  88. <div>末页</div>
  89. <span>共10页</span>
  90. <span>30条记录</span>
  91. <span>到第</span>
  92. <input type="text" />
  93. <span>页</span>
  94. <button>确定</button>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. <div class="bottom">
  100. <div class="w">
  101. <div class="top">
  102. <ul>
  103. <li>
  104. <a href="">
  105. <img src="../../static/img/bottom1.png" alt="" />
  106. <span>大咖级讲师亲自授课</span>
  107. </a>
  108. </li>
  109. <li>
  110. <a href="">
  111. <img src="../../static/img/bottom.png" alt="" />
  112. <span>课程为学员成长持续赋能</span>
  113. </a>
  114. </li>
  115. <li>
  116. <a href="">
  117. <img src="../../static/img/bottom2.png" alt="" />
  118. <span>学员真是情况大公开</span>
  119. </a>
  120. </li>
  121. </ul>
  122. </div>
  123. <div class="content">
  124. <dl>
  125. <dt>关于愛摳訂</dt>
  126. <dd>教育理念</dd>
  127. <!-- <dd>名师团队</dd>
  128. <dd>学员心声</dd> -->
  129. </dl>
  130. <dl>
  131. <dt>资源下载</dt>
  132. <dd>视频下载</dd>
  133. <!-- <dd>资料下载</dd>
  134. <dd>工具下载</dd> -->
  135. </dl>
  136. <dl>
  137. <dt>加入我们</dt>
  138. <dd>招聘岗位</dd>
  139. <!-- <dd>岗位介绍</dd>
  140. <dd>招贤纳师</dd> -->
  141. </dl>
  142. <dl>
  143. <dt>联系我们</dt>
  144. <dd>http://www.lovecoding.com</dd>
  145. <dd></dd>
  146. </dl>
  147. </div>
  148. </div>
  149. <div class="down">
  150. 愛摳訂书城.Copyright ©2015
  151. </div>
  152. </div>
  153. </body>
  154. </html>