element-assits 0.0.5 → 0.0.7
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 +4 -0
- package/lib/index.js +569 -555
- package/lib/style.css +1 -1
- package/lib/style.scss +129 -127
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,6 +69,7 @@ Vue 原型上挂载了 `$asyncLoad` 方法
|
|
|
69
69
|
| bottom-menu | 无 | 底部菜单
|
|
70
70
|
| before-column | 无 | 表格内部列之前
|
|
71
71
|
| after-column | 无 | 表格内部列之后
|
|
72
|
+
| footer | bottom-menu&分页 | 表格底部
|
|
72
73
|
|
|
73
74
|
## column-attributes
|
|
74
75
|
| 属性名 | 类型 | 默认值 | 说明 |
|
|
@@ -100,11 +101,14 @@ methods: {
|
|
|
100
101
|
{
|
|
101
102
|
label: '名称', // 必须,标签名 String | Function
|
|
102
103
|
prop: 'name', // 必须,属性名 String
|
|
104
|
+
labelTooltip: '名称的tips', // 可选,名称描述tips String | Object
|
|
103
105
|
required: true, // 可选(默认false),是否必填 Boolean
|
|
104
106
|
component: 'el-input', // 可选(默认el-input),所用组件 String | Component
|
|
105
107
|
rules: [], // 可选,校验规则 Array | Function
|
|
106
108
|
bind: {}, // 可选,组件v-bind Object
|
|
107
109
|
on: {}, // 可选,组件v-on Object
|
|
110
|
+
show: false, // 可选(默认true),控制表单项是否显示 Boolean | Function
|
|
111
|
+
enable: false, // 可选(默认true),控制表单项是否启用 Boolean | Function
|
|
108
112
|
span: 12, // 可选(默认12),所占栅格
|
|
109
113
|
pull: 12, // 可选,栅格偏移
|
|
110
114
|
push: 12, // 可选,栅格偏移
|