element-assits 0.0.88 → 0.0.90

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 CHANGED
@@ -153,6 +153,23 @@ Vue 原型上挂载了 `$asyncLoad` 方法(与asyncLoad相同)
153
153
  |bodyPadding|内容 padding|String|undefined|
154
154
  |bodyMinHeight|内容最小高度|String|undefined|
155
155
  |allowDrag|是否允许拖拽|Boolean|true|
156
+ |confirmText|确定按钮文本|String|'确定'|
157
+ |cancelText|取消按钮文本|String|'取消'|
158
+
159
+ ### 抽屉 EaDrawer
160
+ 继承 el-drawer,允许少量修改布局,简化按钮
161
+ 绑定confirm事件,出现确定按钮;绑定cancel事件,出现取消按钮
162
+ #### props
163
+ | 属性名 | 说明 | 类型 | 默认值 |
164
+ |:---|:---|:---|:---|
165
+ |customClass|自定义css类|String|undefined|
166
+ |confirmLoading|确定按钮的加载状态|Boolean|false|
167
+ |width|抽屉宽度|String|'720px'|
168
+ |bodyPadding|内容 padding|String|'20px'|
169
+ |headerHeight|标题高度|String|'70px'|
170
+ |footerHeight|底部高度|String|'70px'|
171
+ |confirmText|确定按钮文本|String|'确定'|
172
+ |cancelText|取消按钮文本|String|'取消'|
156
173
 
157
174
  ### 数字输入框 EaNumber
158
175
  使样式与 el-input 相似
@@ -214,6 +231,7 @@ el-scrollbar 衍生,优化样式
214
231
  |disableCheckbox|是否禁用选择(只读)|Boolean|false|
215
232
  |columnFormat|对原有的column进行过滤|Function|column => column|
216
233
  |rootAlias|根节点别名|String|root|
234
+ |advancedConfChunk|高级配置构造函数回调,可自由设置高级配置表单|Function|undefined|
217
235
  #### methods
218
236
  | 方法名 | 说明 | 参数 |
219
237
  |:---|:---|:---|