bri-components 1.3.66 → 1.3.68

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bri-components",
3
- "version": "1.3.66",
3
+ "version": "1.3.68",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -32,13 +32,14 @@
32
32
  <dsh-cascader-table
33
33
  v-else
34
34
  :canEdit="finalCanEdit"
35
+ :data="curVal.tree"
35
36
  :rowDefault="curVal.rowDefault"
36
37
  :columns="subForm"
37
- :data="curVal"
38
- :treeColumns="treeForm"
39
38
  :propsObj="defaultPropsObj"
40
39
  :allFormList="allFormList"
41
40
  :parentObj="value"
41
+ :tableDataObj="curVal"
42
+ :treeColumns="treeForm"
42
43
  @change="change"
43
44
  ></dsh-cascader-table>
44
45
  </template>
@@ -65,13 +66,14 @@
65
66
  v-else
66
67
  ref="table"
67
68
  :canEdit="finalCanEdit"
69
+ :data="curVal.tree"
68
70
  :rowDefault="curVal.rowDefault"
69
71
  :columns="subForm"
70
- :data="curVal"
71
- :treeColumns="treeForm"
72
72
  :propsObj="selfPropsObj"
73
73
  :allFormList="allFormList"
74
74
  :parentObj="value"
75
+ :tableDataObj="curVal"
76
+ :treeColumns="treeForm"
75
77
  @change="change"
76
78
  ></dsh-cascader-table>
77
79
  </template>