js_ryl 1.0.30 → 1.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -7
- package/dist/build.js +8 -1
- package/package.json +1 -3
- package/src/App.vue +10 -14
- package/src/downExcel/index.js +18 -12
- package/src/downExcel/vendor/Blob.js +0 -179
- package/src/downExcel/vendor/Export2Excel.js +0 -156
- package/src/downExcel/vendor/Export2Excel_old.js +0 -220
- package/src/downExcel/vendor/Export2Zip.js +0 -24
package/README.md
CHANGED
|
@@ -185,12 +185,8 @@
|
|
|
185
185
|
#14.下载excel表格
|
|
186
186
|
|
|
187
187
|
#方法:
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
# const head = ["订单编号","金额(元)"];
|
|
191
|
-
# const body = ["client_order_number","amount"];
|
|
192
|
-
# let list = [{client_order_number: '354615',amount: 23},{client_order_number: '9735',amount: 230}]
|
|
193
|
-
# downExcel(head,body,list);
|
|
188
|
+
# 第二、三个参数 选填
|
|
189
|
+
downExcel(data,'这是excel名称','这是里面的分区名称');
|
|
194
190
|
|
|
195
191
|
|
|
196
192
|
# serve with hot reload at localhost:8080
|
|
@@ -215,7 +211,7 @@
|
|
|
215
211
|
#1.0.25: 新增了emoji,highLight方法
|
|
216
212
|
#1.0.28: 商品飞入购物车效果
|
|
217
213
|
#1.0.29: 拷贝方法优化
|
|
218
|
-
#1.0.
|
|
214
|
+
#1.0.31: 新增下载excel方法
|
|
219
215
|
```
|
|
220
216
|
|
|
221
217
|
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader).
|