123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <link rel="stylesheet" href="../../static/css/minireset.css" />
- <link rel="stylesheet" href="../../static/css/common.css" />
- <link rel="stylesheet" href="../../static/css/cart.css" />
- <link rel="stylesheet" href="../../static/css/bookManger.css" />
- </head>
- <body>
- <div class="header">
- <div class="w">
- <div class="header-left">
- <a href="../../index.html">
- <img src="../../static/img/logo.gif" alt=""
- /></a>
- <h1>图书管理系统</h1>
- </div>
- <div class="header-right">
- <a href="#" class="order">图书管理</a>
- <a href="./order_manager.html" class="destory">订单管理</a>
- <a href="../../index.html" class="gohome">返回商城</a>
- </div>
- </div>
- </div>
- <div class="list">
- <div class="w">
- <div class="add">
- <a href="book_edit.html">添加图书</a>
- </div>
- <table>
- <thead>
- <tr>
- <th>图片</th>
- <th>商品名称</th>
- <th>价格</th>
- <th>作者</th>
- <th>销量</th>
- <th>库存</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>
- <img src="../../static/uploads/huozhe.jpg" alt="" />
- </td>
- <td>活着</td>
- <td>
- 100.00
- </td>
- <td>余华</td>
- <td>200</td>
- <td>400</td>
- <td>
- <a href="book_edit.html">修改</a><a href="" class="del">删除</a>
- </td>
- </tr>
- <tr>
- <td>
- <img src="../../static/uploads/huozhe.jpg" alt="" />
- </td>
- <td>活着</td>
- <td>
- 100.00
- </td>
- <td>余华</td>
- <td>200</td>
- <td>400</td>
- <td>
- <a href="book_edit.html">修改</a><a href="" class="del">删除</a>
- </td>
- </tr>
- </tbody>
- </table>
- <div class="footer">
- <div class="footer-right">
- <div>首页</div>
- <div>上一页</div>
- <ul>
- <li class="active">1</li>
- <li>2</li>
- <li>3</li>
- </ul>
- <div>下一页</div>
- <div>末页</div>
- <span>共10页</span>
- <span>30条记录</span>
- <span>到第</span>
- <input type="text" />
- <span>页</span>
- <button>确定</button>
- </div>
- </div>
- </div>
- </div>
- <div class="bottom">
- <div class="w">
- <div class="top">
- <ul>
- <li>
- <a href="">
- <img src="../../static/img/bottom1.png" alt="" />
- <span>大咖级讲师亲自授课</span>
- </a>
- </li>
- <li>
- <a href="">
- <img src="../../static/img/bottom.png" alt="" />
- <span>课程为学员成长持续赋能</span>
- </a>
- </li>
- <li>
- <a href="">
- <img src="../../static/img/bottom2.png" alt="" />
- <span>学员真是情况大公开</span>
- </a>
- </li>
- </ul>
- </div>
- <div class="content">
- <dl>
- <dt>关于愛摳訂</dt>
- <dd>教育理念</dd>
- <!-- <dd>名师团队</dd>
- <dd>学员心声</dd> -->
- </dl>
- <dl>
- <dt>资源下载</dt>
- <dd>视频下载</dd>
- <!-- <dd>资料下载</dd>
- <dd>工具下载</dd> -->
- </dl>
- <dl>
- <dt>加入我们</dt>
- <dd>招聘岗位</dd>
- <!-- <dd>岗位介绍</dd>
- <dd>招贤纳师</dd> -->
- </dl>
- <dl>
- <dt>联系我们</dt>
- <dd>http://www.lovecoding.com</dd>
- <dd></dd>
- </dl>
- </div>
- </div>
- <div class="down">
- 愛摳訂书城.Copyright ©2015
- </div>
- </div>
- </body>
- </html>
|