Commit ed0066855f4e38d6e5dbd3c585ce5b6fa5f1d1e7

Authored by Aaron
1 parent 8374c330
Exists in master and in 1 other branch legacy

补充Scheme文档方法和事件

Showing 1 changed file with 20 additions and 1 deletions   Show diff stats
examples/views/docs/component/scheme.md
... ... @@ -45,4 +45,23 @@ export default {
45 45 参数|说明|类型|可选值|默认值
46 46 -|-|-|-|-
47 47 value / v-model | 绑定值 | Array | - | []
48   -list | 表单项配置列表 | Array | - | []
49 48 \ No newline at end of file
  49 +list | 表单项配置列表 | Array | - | []
  50 +searchScheme | search域做配置 | Object | - | -
  51 +formScheme | form域做配置 | Object | - | -
  52 +tableScheme | table域做配置 | Object | - | -
  53 +其它参数 | 同时包含Form、Table、Search、Detail配置项的参数 | - | - | -
  54 +
  55 +## Methods 方法
  56 +
  57 +方法名|说明|参数
  58 +-|-|-
  59 +setModelValue | 设置表单值 | model
  60 +setDialog | 打开并设置弹出框模式 | { title, type, model }
  61 +
  62 +## Events 事件
  63 +
  64 +事件名称|说明|回调参数
  65 +-|-|-
  66 +change | 表单model发生变化时触发 | model对象
  67 +dialog-change | 设置弹出框类型或类型变化时触发 | dialogType
  68 +selection | 选中表格内容时触发 | selection
50 69 \ No newline at end of file
... ...