-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_tables.html
605 lines (578 loc) · 24.8 KB
/
ui_tables.html
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>分页 - bootstrap中文后台管理系统模板</title>
<link rel="icon" href="favicon.ico" type="image/ico">
<meta name="author" content="yinqi">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/materialdesignicons.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body data-logobg="color_8" data-sidebarbg="color_8">
<div class="lyear-layout-web">
<div class="lyear-layout-container">
<!--左侧导航-->
<aside class="lyear-layout-sidebar">
<!-- logo -->
<div id="logo" class="sidebar-header">
<a href="index.html"><img src="images/logo-sidebar.png" title="LightYear" alt="LightYear" /></a>
</div>
<div class="lyear-layout-sidebar-scroll">
<nav class="sidebar-main">
<ul class="nav nav-drawer">
<li class="nav-item"> <a href="index.html"><i class="mdi mdi-home"></i> 后台首页</a> </li>
<li class="nav-item nav-item-has-subnav active open">
<a href="javascript:void(0)"><i class="mdi mdi-palette"></i> UI 元素</a>
<ul class="nav nav-subnav">
<li> <a href="ui_buttons.html">按钮</a> </li>
<li> <a href="ui_cards.html">卡片</a> </li>
<li> <a href="ui_grid.html">格栅</a> </li>
<li> <a href="ui_icons.html">图标</a> </li>
<li class="active"> <a href="ui_tables.html">表格</a> </li>
<li> <a href="ui_modals.html">模态框</a> </li>
<li> <a href="ui_tooltips_popover.html">提示 / 弹出框</a> </li>
<li> <a href="ui_alerts.html">警告框</a> </li>
<li> <a href="ui_pagination.html">分页</a> </li>
<li> <a href="ui_progress.html">进度条</a> </li>
<li> <a href="ui_tabs.html">标签页</a> </li>
<li> <a href="ui_typography.html">排版</a> </li>
<li> <a href="ui_step.html">步骤</a> </li>
<li> <a href="ui_other.html">其他</a> </li>
</ul>
</li>
<li class="nav-item nav-item-has-subnav">
<a href="javascript:void(0)"><i class="mdi mdi-format-align-justify"></i> 表单</a>
<ul class="nav nav-subnav">
<li> <a href="forms_elements.html">基本元素</a> </li>
<li> <a href="forms_radio.html">单选框</a> </li>
<li> <a href="forms_checkbox.html">复选框</a> </li>
<li> <a href="forms_switch.html">开关</a> </li>
</ul>
</li>
<li class="nav-item nav-item-has-subnav">
<a href="javascript:void(0)"><i class="mdi mdi-file-outline"></i> 示例页面</a>
<ul class="nav nav-subnav">
<li> <a href="pages_doc.html">文档列表</a> </li>
<li> <a href="pages_gallery.html">图库列表</a> </li>
<li> <a href="pages_config.html">网站配置</a> </li>
<li> <a href="pages_rabc.html">设置权限</a> </li>
<li> <a href="pages_add_doc.html">新增文档</a> </li>
<li> <a href="pages_guide.html">表单向导</a> </li>
<li> <a href="pages_login.html">登录页面</a> </li>
<li> <a href="pages_error.html">错误页面</a> </li>
</ul>
</li>
<li class="nav-item nav-item-has-subnav">
<a href="javascript:void(0)"><i class="mdi mdi-language-javascript"></i> JS 插件</a>
<ul class="nav nav-subnav">
<li> <a href="js_datepicker.html">日期选取器</a> </li>
<li> <a href="js_sliders.html">滑块</a> </li>
<li> <a href="js_colorpicker.html">选色器</a> </li>
<li> <a href="js_chartjs.html">Chart.js</a> </li>
<li> <a href="js_jconfirm.html">对话框</a> </li>
<li> <a href="js_tags_input.html">标签插件</a> </li>
<li> <a href="js_notify.html">通知消息</a> </li>
</ul>
</li>
</ul>
</nav>
<div class="sidebar-footer">
<p class="copyright">Copyright © 2019. All rights <a href="http://www.bootstrapmb.com/">reserved</a>. </p>
</div>
</div>
</aside>
<!--End 左侧导航-->
<!--头部信息-->
<header class="lyear-layout-header">
<nav class="navbar navbar-default">
<div class="topbar">
<div class="topbar-left">
<div class="lyear-aside-toggler">
<span class="lyear-toggler-bar"></span>
<span class="lyear-toggler-bar"></span>
<span class="lyear-toggler-bar"></span>
</div>
<span class="navbar-page-title"> UI元素 - 表格 </span>
</div>
<ul class="topbar-right">
<li class="dropdown dropdown-profile">
<a href="javascript:void(0)" data-toggle="dropdown">
<img class="img-avatar img-avatar-48 m-r-10" src="images/users/avatar.jpg" alt="管理员" />
<span>管理员 <span class="caret"></span></span>
</a>
<ul class="dropdown-menu dropdown-menu-right">
<li> <a href="pages_profile.html"><i class="mdi mdi-account"></i> 个人信息</a> </li>
<li> <a href="pages_edit_pwd.html"><i class="mdi mdi-lock-outline"></i> 修改密码</a> </li>
<li> <a href="javascript:void(0)"><i class="mdi mdi-delete"></i> 清空缓存</a></li>
<li class="divider"></li>
<li> <a href="pages_login.html"><i class="mdi mdi-logout-variant"></i> 退出登录</a> </li>
</ul>
</li>
<!--切换主题配色-->
<li class="dropdown dropdown-skin">
<span data-toggle="dropdown" class="icon-palette"><i class="mdi mdi-palette"></i></span>
<ul class="dropdown-menu dropdown-menu-right" data-stopPropagation="true">
<li class="drop-title"><p>主题</p></li>
<li class="drop-skin-li clearfix">
<span class="inverse">
<input type="radio" name="site_theme" value="default" id="site_theme_1" checked>
<label for="site_theme_1"></label>
</span>
<span>
<input type="radio" name="site_theme" value="dark" id="site_theme_2">
<label for="site_theme_2"></label>
</span>
<span>
<input type="radio" name="site_theme" value="translucent" id="site_theme_3">
<label for="site_theme_3"></label>
</span>
</li>
<li class="drop-title"><p>LOGO</p></li>
<li class="drop-skin-li clearfix">
<span class="inverse">
<input type="radio" name="logo_bg" value="default" id="logo_bg_1" checked>
<label for="logo_bg_1"></label>
</span>
<span>
<input type="radio" name="logo_bg" value="color_2" id="logo_bg_2">
<label for="logo_bg_2"></label>
</span>
<span>
<input type="radio" name="logo_bg" value="color_3" id="logo_bg_3">
<label for="logo_bg_3"></label>
</span>
<span>
<input type="radio" name="logo_bg" value="color_4" id="logo_bg_4">
<label for="logo_bg_4"></label>
</span>
<span>
<input type="radio" name="logo_bg" value="color_5" id="logo_bg_5">
<label for="logo_bg_5"></label>
</span>
<span>
<input type="radio" name="logo_bg" value="color_6" id="logo_bg_6">
<label for="logo_bg_6"></label>
</span>
<span>
<input type="radio" name="logo_bg" value="color_7" id="logo_bg_7">
<label for="logo_bg_7"></label>
</span>
<span>
<input type="radio" name="logo_bg" value="color_8" id="logo_bg_8">
<label for="logo_bg_8"></label>
</span>
</li>
<li class="drop-title"><p>头部</p></li>
<li class="drop-skin-li clearfix">
<span class="inverse">
<input type="radio" name="header_bg" value="default" id="header_bg_1" checked>
<label for="header_bg_1"></label>
</span>
<span>
<input type="radio" name="header_bg" value="color_2" id="header_bg_2">
<label for="header_bg_2"></label>
</span>
<span>
<input type="radio" name="header_bg" value="color_3" id="header_bg_3">
<label for="header_bg_3"></label>
</span>
<span>
<input type="radio" name="header_bg" value="color_4" id="header_bg_4">
<label for="header_bg_4"></label>
</span>
<span>
<input type="radio" name="header_bg" value="color_5" id="header_bg_5">
<label for="header_bg_5"></label>
</span>
<span>
<input type="radio" name="header_bg" value="color_6" id="header_bg_6">
<label for="header_bg_6"></label>
</span>
<span>
<input type="radio" name="header_bg" value="color_7" id="header_bg_7">
<label for="header_bg_7"></label>
</span>
<span>
<input type="radio" name="header_bg" value="color_8" id="header_bg_8">
<label for="header_bg_8"></label>
</span>
</li>
<li class="drop-title"><p>侧边栏</p></li>
<li class="drop-skin-li clearfix">
<span class="inverse">
<input type="radio" name="sidebar_bg" value="default" id="sidebar_bg_1" checked>
<label for="sidebar_bg_1"></label>
</span>
<span>
<input type="radio" name="sidebar_bg" value="color_2" id="sidebar_bg_2">
<label for="sidebar_bg_2"></label>
</span>
<span>
<input type="radio" name="sidebar_bg" value="color_3" id="sidebar_bg_3">
<label for="sidebar_bg_3"></label>
</span>
<span>
<input type="radio" name="sidebar_bg" value="color_4" id="sidebar_bg_4">
<label for="sidebar_bg_4"></label>
</span>
<span>
<input type="radio" name="sidebar_bg" value="color_5" id="sidebar_bg_5">
<label for="sidebar_bg_5"></label>
</span>
<span>
<input type="radio" name="sidebar_bg" value="color_6" id="sidebar_bg_6">
<label for="sidebar_bg_6"></label>
</span>
<span>
<input type="radio" name="sidebar_bg" value="color_7" id="sidebar_bg_7">
<label for="sidebar_bg_7"></label>
</span>
<span>
<input type="radio" name="sidebar_bg" value="color_8" id="sidebar_bg_8">
<label for="sidebar_bg_8"></label>
</span>
</li>
</ul>
</li>
<!--切换主题配色-->
</ul>
</div>
</nav>
</header>
<!--End 头部信息-->
<!--页面主要内容-->
<main class="lyear-layout-content">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-header"><h4>表格</h4></div>
<div class="card-body">
<h5>基本实例</h5>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>书籍名称</th>
<th>作者</th>
<th>分类</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>庄子</td>
<td>庄子</td>
<td>古文典籍</td>
</tr>
<tr>
<th scope="row">2</th>
<td>道德经</td>
<td>老子</td>
<td>古文典籍</td>
</tr>
<tr>
<th scope="row">3</th>
<td>能面杀人事件</td>
<td>高木彬光</td>
<td>悬疑小说</td>
</tr>
</tbody>
</table>
<h5>条纹状表格 <code>.table-striped</code></h5>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>书籍名称</th>
<th>作者</th>
<th>分类</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>阴翳礼赞</td>
<td>谷崎润一郎</td>
<td>散文随笔</td>
</tr>
<tr>
<th scope="row">2</th>
<td>千门公子</td>
<td>方白羽</td>
<td>武侠小说</td>
</tr>
<tr>
<th scope="row">3</th>
<td>陈二狗的妖孽人生</td>
<td>烽火戏诸侯</td>
<td>都市小说</td>
</tr>
</tbody>
</table>
<h5>带边框的表格 <code>.table-bordered</code></h5>
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>书籍名称</th>
<th>作者</th>
<th>分类</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>理智与情感</td>
<td>简·奥斯汀</td>
<td>国外名著</td>
</tr>
<tr>
<th scope="row">2</th>
<td>浪子神鹰</td>
<td>陈青云</td>
<td>武侠小说</td>
</tr>
<tr>
<th scope="row">3</th>
<td>风中之路</td>
<td>川端康成</td>
<td>当代小说</td>
</tr>
</tbody>
</table>
<h5>鼠标悬停 <code>.table-hover</code></h5>
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>书籍名称</th>
<th>作者</th>
<th>分类</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>康复的家庭</td>
<td>大江健三郎</td>
<td>散文随笔</td>
</tr>
<tr>
<th scope="row">2</th>
<td>名侦探的规条</td>
<td>东野圭吾</td>
<td>悬疑小说</td>
</tr>
<tr>
<th scope="row">3</th>
<td>天才相师</td>
<td>打眼</td>
<td>都市小说</td>
</tr>
</tbody>
</table>
<h5>紧缩表格 <code>.table-condensed</code></h5>
<table class="table table-condensed">
<thead>
<tr>
<th>#</th>
<th>书籍名称</th>
<th>作者</th>
<th>分类</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>简单爱</td>
<td>董晓磊</td>
<td>青春校园</td>
</tr>
<tr>
<th scope="row">2</th>
<td>主教杀人事件</td>
<td>范·达恩</td>
<td>悬疑小说</td>
</tr>
<tr>
<th scope="row">3</th>
<td>天神下凡</td>
<td>烽火戏诸侯</td>
<td>玄幻仙侠</td>
</tr>
</tbody>
</table>
<h5>状态类</h5>
<table class="table">
<thead>
<tr>
<th>#</th>
<th>书籍名称</th>
<th>作者</th>
<th>分类</th>
</tr>
</thead>
<tbody>
<tr class="active">
<th scope="row">1</th>
<td>北京悠悠馆</td>
<td>陈舜臣</td>
<td>历史小说</td>
</tr>
<tr>
<th scope="row">2</th>
<td>诸葛孔明</td>
<td>陈舜臣</td>
<td>历史小说</td>
</tr>
<tr class="success">
<th scope="row">3</th>
<td>甲午战争</td>
<td>陈舜臣</td>
<td>历史小说</td>
</tr>
<tr>
<th scope="row">4</th>
<td>神兽之爪</td>
<td>陈舜臣</td>
<td>历史小说</td>
</tr>
<tr class="info">
<th scope="row">5</th>
<td>帝国的软肋:大汉王朝四百年</td>
<td>陈舜臣</td>
<td>历史小说</td>
</tr>
<tr>
<th scope="row">6</th>
<td>春秋战国:戈马钟鼓杀与盟</td>
<td>陈舜臣</td>
<td>历史小说</td>
</tr>
<tr class="warning">
<th scope="row">7</th>
<td>龙凤之国</td>
<td>陈舜臣</td>
<td>历史小说</td>
</tr>
<tr>
<th scope="row">8</th>
<td>大唐帝国之隋乱唐盛三百年</td>
<td>陈舜臣</td>
<td>历史小说</td>
</tr>
<tr class="danger">
<th scope="row">9</th>
<td>一个陌生女人的来信</td>
<td>斯蒂芬·茨威格</td>
<td>国外名著</td>
</tr>
</tbody>
</table>
<h5>响应式表格</h5>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>#</th>
<th>书籍名</th>
<th>作者</th>
<th>国籍</th>
<th>分类</th>
<th>库存</th>
<th>价格</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>钦差大臣</td>
<td>果戈理</td>
<td>俄国</td>
<td>国外名族</td>
<td>125</td>
<td>36.00</td>
</tr>
<tr>
<th scope="row">2</th>
<td>西厢记</td>
<td>王实甫</td>
<td>中国</td>
<td>古文典籍</td>
<td>26</td>
<td>18.00</td>
</tr>
<tr>
<th scope="row">3</th>
<td>儒林外史</td>
<td>吴敬梓</td>
<td>中国</td>
<td>古文典籍</td>
<td>39</td>
<td>22.00</td>
</tr>
</tbody>
</table>
</div>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>书籍名</th>
<th>作者</th>
<th>国籍</th>
<th>分类</th>
<th>库存</th>
<th>价格</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>钦差大臣</td>
<td>果戈理</td>
<td>俄国</td>
<td>国外名族</td>
<td>125</td>
<td>36.00</td>
</tr>
<tr>
<th scope="row">2</th>
<td>西厢记</td>
<td>王实甫</td>
<td>中国</td>
<td>古文典籍</td>
<td>26</td>
<td>18.00</td>
</tr>
<tr>
<th scope="row">3</th>
<td>儒林外史</td>
<td>吴敬梓</td>
<td>中国</td>
<td>古文典籍</td>
<td>39</td>
<td>22.00</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!--End 页面主要内容-->
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/perfect-scrollbar.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>