forked from uxcore/uxcore-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.52 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>uxcore-table</title>
<link rel="stylesheet" type="text/css" href="//g.alicdn.com/??platform/common/s/1.1/global/global.css">
<!-- <link rel="stylesheet" href="./node_modules/uxcore-kuma/dist/orange.css"> -->
<link rel="stylesheet" href="./dist/demo.css">
</head>
<body>
<div >
<h3 style="margin:10px 0px;">普通模式,包括列固定</h3>
<div id="UXCoreDemo">
</div>
</div>
<div >
<h3 style="margin:10px 0px;">行内编辑模式</h3>
<div id="UXCoreDemo2">
</div>
</div>
<div >
<h3 style="margin:10px 0px;">树展开模式</h3>
<div id="UXCoreDemo3">
</div>
</div>
<div >
<h3 style="margin:10px 0px;">查看模式</h3>
<div id="UXCoreDemo4">
</div>
</div>
<div >
<h3 style="margin:10px 0px;">列分组</h3>
<div id="UXCoreDemo5">
</div>
</div>
<div >
<h3 style="margin:10px 0px;">行分组</h3>
<div id="UXCoreDemo6">
</div>
</div>
<script type="text/javascript">
window.urlPrefix = 'http://' + location.host + '/';
</script>
<script src="./node_modules/console-polyfill/index.js"></script>
<script src="./node_modules/babel-polyfill/dist/polyfill.min.js"></script>
<script src="./node_modules/react/umd/react.development.js"></script>
<script src="./node_modules/react-dom/umd/react-dom.development.js"></script>
<script src="./dist/demo.js"></script>
</body>
</html>