jsmom-table-form 1.0.20 → 1.0.24
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/CHANGELOG.MD +9 -1
- package/README.md +22 -2
- package/dist/main.js +1 -15
- package/package.json +3 -2
- package/webpack.config.js +6 -0
package/CHANGELOG.MD
CHANGED
package/README.md
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## 安装
|
|
4
4
|
|
|
5
|
-
> npm i jsmom-table-form xe-utils sortablejs jsmom-form -S
|
|
5
|
+
> npm i jsmom-table-form xe-utils sortablejs jsmom-form element-ui -S
|
|
6
6
|
|
|
7
7
|
or
|
|
8
8
|
|
|
9
|
-
> yarn add jsmom-table-form xe-utils sortablejs jsmom-form
|
|
9
|
+
> yarn add jsmom-table-form xe-utils sortablejs jsmom-form element-ui
|
|
10
10
|
|
|
11
11
|
## 使用
|
|
12
12
|
|
|
@@ -105,6 +105,21 @@ or
|
|
|
105
105
|
- fnPropListRecord `Function` 获取列表的方法
|
|
106
106
|
- fnPropExportExcel `Function` 导出 Excel 的方法
|
|
107
107
|
- eventMaps `Object<Function>` 事件集合
|
|
108
|
+
|
|
109
|
+
- checkboxChange 多行选中行时
|
|
110
|
+
- 参数 {records,reserves,indeterminates,checked,row,rowIndex,column,columnIndex}
|
|
111
|
+
- radioChange 单行选中时
|
|
112
|
+
- 参数 {newValue,oldValue,row,rowIndex,column,columnIndex}
|
|
113
|
+
- filterSubmit 过滤提交时
|
|
114
|
+
- 参数 当前过虑表单数据
|
|
115
|
+
- refreshTable 点击表格刷新时
|
|
116
|
+
- clickAddBtn 点击添加按钮时
|
|
117
|
+
- getListData 获取列表数据成功后
|
|
118
|
+
- 参数 数据列表
|
|
119
|
+
- importExcelSuccessAfter 导入文件时 status:200 后
|
|
120
|
+
- 参数1 响应数据
|
|
121
|
+
- 参数2 文件信息
|
|
122
|
+
|
|
108
123
|
- configData `Object`
|
|
109
124
|
- size `String` 组件大小 medium|small|mini
|
|
110
125
|
- headers `Object` 请求头信息
|
|
@@ -164,3 +179,8 @@ or
|
|
|
164
179
|
- importBefore 表单内容
|
|
165
180
|
- toolbarButton 工具栏按钮
|
|
166
181
|
- selectedRow 选中的行数据
|
|
182
|
+
|
|
183
|
+
## 迁移指南
|
|
184
|
+
|
|
185
|
+
- 删除 fndownloadImportErrorFile 配置
|
|
186
|
+
-
|