-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (45 loc) · 1.87 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
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document Import</title>
<link rel="stylesheet" type="text/css" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./node_modules/bootstrap-table/dist/bootstrap-table.min.css">
<link rel="stylesheet" type="text/css" href="./node_modules/x-editable/dist/bootstrap3-editable/css/bootstrap-editable.css">
<link rel="stylesheet" type="text/css" href="./src/style/main.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-7">
<div class="row">
</div>
<div class="row">
<table class="main-grid" id="mainGrid"></table>
</div>
<div class="row">
<div class="col-md-12">
<div>
<div class="box"></div>
</div>
</div>
</div>
</div>
<div class="col-md-5">
<div id="preview">
<div id="previewImg" class="previewImg">
<img src=".\src\images\1.png" />
</div>
</div>
</div>
</div>
</div>
</body>
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./node_modules/bootstrap-table/dist/bootstrap-table.min.js"></script>
<script src="./node_modules/x-editable/dist/bootstrap3-editable/js/bootstrap-editable.js"></script>
<script src="./node_modules/bootstrap-table/src/extensions/editable/bootstrap-table-editable.js"></script>
<script src="./node_modules/jquery.panzoom/dist/jquery.panzoom.min.js"></script>
<script src="src/js/renderer.js"></script>
</html>