@newview/ui 1.1.73 → 1.1.74
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 +3 -0
- package/package.json +1 -1
- package/types/ComForm.d.ts +9 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/types/ComForm.d.ts
CHANGED
|
@@ -1676,7 +1676,15 @@ export interface structureProp{
|
|
|
1676
1676
|
/**
|
|
1677
1677
|
* 构件选择类别 1:单位工程 2:构件
|
|
1678
1678
|
*/
|
|
1679
|
-
selType?:StructureInstanceSelType;
|
|
1679
|
+
selType?:StructureInstanceSelType;
|
|
1680
|
+
/**
|
|
1681
|
+
* 创建机构Id(传入则只查该机构划分的构件)
|
|
1682
|
+
*/
|
|
1683
|
+
businessId?:Number;
|
|
1684
|
+
/**
|
|
1685
|
+
* 构件选择改变
|
|
1686
|
+
*/
|
|
1687
|
+
onChange?: (Ids:any,data:any) => any;
|
|
1680
1688
|
|
|
1681
1689
|
}
|
|
1682
1690
|
|