1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  | let props = { 
 |    columns: {//当前表的配置信息 
 |      type: Array, 
 |      default: () => { 
 |        return []; 
 |      } 
 |    }, 
 |    detail: {//从表明细配置 
 |      type: Object, 
 |      default: () => { 
 |        return { 
 |          columns: [],//从表列 
 |          sortName: ""//从表排序字段 
 |        }; 
 |      } 
 |    }, 
 |    editFormFields: {//新建、编辑字段(key/value) 
 |      type: Object, 
 |      default: () => { 
 |        return {}; 
 |      } 
 |    }, 
 |    editFormOptions: {//新建、编辑配置信息 
 |      type: Array, 
 |      default: () => { 
 |        return []; 
 |      } 
 |    }, 
 |    searchFormFields: {//查询字段(key/value) 
 |      type: Object, 
 |      default: () => { 
 |        return {}; 
 |      } 
 |    }, 
 |    searchFormOptions: {//查询配置信息(key/value) 
 |      type: Array, 
 |      default: () => { 
 |        return []; 
 |      } 
 |    }, 
 |    table: {//表的配置信息:主键、排序等 
 |      type: Object, 
 |      default: () => { 
 |        return {}; 
 |      } 
 |    }, 
 |    extend: {//表的扩展方法与组件都合并到此属性中 
 |      type: Object, 
 |      default: () => { 
 |        return {}; 
 |      } 
 |    } 
 |  } 
 |    
 |  export default props; 
 |  
  |