general-basic-form 2.4.0 → 2.4.1
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 +22 -1
- package/dist/index.js +4831 -4805
- package/dist/index.umd.cjs +30 -30
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -752,7 +752,7 @@ import { RBaseTabs } from 'general-basic-form';
|
|
|
752
752
|
多功能组合弹出框
|
|
753
753
|
|
|
754
754
|
```
|
|
755
|
-
import {
|
|
755
|
+
import { RBaseCombobox } from 'general-basic-form';
|
|
756
756
|
<RBaseCombobox
|
|
757
757
|
onFormChange={(params) => {
|
|
758
758
|
console.log('queryParams', params);
|
|
@@ -786,3 +786,24 @@ import { RGeneralBasicForm, RBasicForm, RBaseCombobox } from 'general-basic-form
|
|
|
786
786
|
/>
|
|
787
787
|
|
|
788
788
|
```
|
|
789
|
+
# RBaseDatePicker 单独使用
|
|
790
|
+
|
|
791
|
+
日期选择器
|
|
792
|
+
|
|
793
|
+
```
|
|
794
|
+
import { RBaseDatePicker } from 'general-basic-form';
|
|
795
|
+
<RBaseDatePicker
|
|
796
|
+
onFormChange={(params) => {
|
|
797
|
+
console.log('queryParams', params);
|
|
798
|
+
}}
|
|
799
|
+
// ref={RBaseComboboxRef}
|
|
800
|
+
value={new Date()}
|
|
801
|
+
item={{
|
|
802
|
+
setting: {
|
|
803
|
+
placeholder: '请选择创建时间',
|
|
804
|
+
},
|
|
805
|
+
dataPickerType: "month",//day|month
|
|
806
|
+
}}
|
|
807
|
+
/>
|
|
808
|
+
|
|
809
|
+
```
|