This repository was archived by the owner on Jul 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (69 loc) · 2.74 KB
/
Copy pathindex.html
File metadata and controls
75 lines (69 loc) · 2.74 KB
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Excel 表格拆分工具</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>Excel 表格拆分工具</h1>
<div class="header-buttons">
<button id="addFiles" class="btn success">添加文件</button>
<button id="startSplit" class="btn success" disabled>开始拆分</button>
</div>
</div>
<!-- 消息提示容器 -->
<div class="message-container" id="messageContainer"></div>
<div class="main">
<div class="file-list" id="fileList">
<div class="empty-state">
<p>暂无文件</p>
<p class="tip">点击"添加文件"按钮开始上传Excel文件</p>
</div>
</div>
<div class="settings">
<div class="split-type">
<h3>拆分方式</h3>
<label>
<input type="radio" name="splitType" value="sheet" checked>
按工作表拆分
</label>
<label>
<input type="radio" name="splitType" value="content">
按内容拆分
</label>
</div>
<div class="content-settings" id="contentSettings" style="display: none;">
<h3>拆分设置</h3>
<div class="form-group">
<label>工作表:</label>
<select id="sheetSelect"></select>
</div>
<div class="form-group">
<label>拆分列:</label>
<select id="columnSelect"></select>
</div>
</div>
<div class="output-settings">
<h3>输出设置</h3>
<div class="form-group">
<label>输出目录:</label>
<input type="text" id="outputDir" readonly>
<button id="selectOutputDir" class="btn">选择目录</button>
</div>
</div>
</div>
</div>
<div class="progress-container" id="progressContainer" style="display: none;">
<div class="progress">
<div class="progress-bar" id="progressBar"></div>
</div>
<div class="progress-text" id="progressText">处理中...</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>