-
Notifications
You must be signed in to change notification settings - Fork 98
/
index.html
237 lines (234 loc) · 9.59 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
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
<!--
* @Description: 这是***页面(组件)
* @Date: 2022-08-14 18:12:42
* @Author: zouzheng
* @LastEditors: zouzheng
* @LastEditTime: 2022-08-21 00:28:57
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pikaz-excel-js-demo</title>
<script src="https://unpkg.com/pikaz-excel-js"></script>
</head>
<body>
<div>
<button id="excelExport">导出多种排版的excel</button>
<br />
<button id="excelImport">自动导入excel(支持xlsx与xls格式)</button>
<br/>
自定义导入
<input id="excelImport1" type="file" accept=".xlsx,.xls">
</div>
<script>
const { excelExport, excelImport } = window.pikazExcelJs
const excelExportBtn = document.getElementById("excelExport")
// 导出
excelExportBtn.onclick = async () => {
try {
await excelExport({
// 表格数据
sheet: [
{
// 表格标题
title: "水果的味道1",
// 表头
tHeader: ["种类", "味道"],
// 数据键名
keys: ["name", "taste"],
// 表格数据
table: [
{
name: "荔枝",
taste: "甜",
},
{
name: "菠萝蜜",
taste: "甜",
},
{
name: "香蕉",
taste: "甜",
},
{
name: "酸角",
taste: "酸",
},
],
sheetName: "水果的味道1",
},
{
// 表格标题
title: "水果的产量2",
// 表头
tHeader: [
"季度",
"月份",
"名称",
"A果园产量(万吨)",
"B果园产量(万吨)",
"总产量合计(万吨)",
],
// 数据键名
keys: ["a", "b", "c", "d", "e", "f"],
// 合并项
merges: [
"1-3:1-5",
"1-6:1-8",
"1-9:1-11",
"1-12:1-14",
"1-15:3-15",
],
// 表格数据
table: [
{
a: "第一季度",
b: "一月",
c: "番石榴",
d: "2",
e: "3",
f: "5",
},
{
a: "",
b: "二月",
c: "桑葚",
d: "3",
e: "3",
f: "6",
},
{
a: "",
b: "三月",
c: "樱桃",
d: "2",
e: "2",
f: "4",
},
{
a: "第二季度",
b: "四月",
c: "草莓",
d: "1",
e: "2",
f: "3",
},
{
a: "",
b: "五月",
c: "桃",
d: "2",
e: "2",
f: "4",
},
{
a: "",
b: "六月",
c: "西瓜",
d: "3",
e: "2",
f: "5",
},
{
a: "第三季度",
b: "七月",
c: "葡萄",
d: "3",
e: "3",
f: "6",
},
{
a: "",
b: "八月",
c: "木瓜",
d: "2",
e: "2",
f: "4",
},
{
a: "",
b: "九月",
c: "苹果",
d: "3",
e: "1",
f: "4",
},
{
a: "第四季度",
b: "十月",
c: "橙",
d: "3",
e: "2",
f: "5",
},
{
a: "",
b: "十一月",
c: "橘子",
d: "1",
e: "1",
f: "2",
},
{
a: "",
b: "十二月",
c: "柚子",
d: "4",
e: "1",
f: "5",
},
{
a: "全年累计产量",
b: "",
c: "",
d: "29",
e: "24",
f: "53",
},
],
// 表格全局样式
globalStyle: { font: { sz: 16 } },
// 单元格样式
cellStyle: [
{ cell: "1-1", fill: { fgColor: { rgb: "B0C4DE" } } },
{ cell: "1-3", fill: { fgColor: { rgb: "7FFFAA" } } },
{ cell: "1-6", fill: { fgColor: { rgb: "FFA500" } } },
{ cell: "1-9", fill: { fgColor: { rgb: "F4A460" } } },
{ cell: "1-12", fill: { fgColor: { rgb: "00BFFF" } } },
{ cell: "1-15", fill: { fgColor: { rgb: "C0C0C0" } } },
],
// 表名
sheetName: "水果的产量2",
},
],
// 文件名称
filename: "pikaz-excel-js-demo",
// 处理数据之前的钩子
beforeStart: (bookType, filename, sheet) => {
console.log(bookType, filename, sheet);
console.log("开始导出");
},
});
} catch (error) {
console.log(error);
}
}
// 自动导入
const excelImportBtn = document.getElementById("excelImport")
excelImportBtn.onclick =async () => {
const result=await excelImport()
console.log(result);
}
// 自定义导入
const excelImport1Btn = document.getElementById("excelImport1")
excelImport1Btn.onchange =async (e) => {
const file= e.target.files[0]
const result =await excelImport({ file })
console.log(result);
}
</script>
</body>
</html>