123456789101112131415161718192021222324252627 |
- export var PickerDefaultProps = {
- okText: '确定',
- cancelText: '取消',
- disabled: false,
- maskClosable: false,
- options: [],
- placeholder: '请选择',
- defaultValue: [],
- };
- export var PickerFunctionalProps = {
- formattedValueText: null,
- visible: null,
- defaultVisible: null,
- animationType: 'transform',
- value: null,
- defaultValue: null,
- disabled: false,
- title: '',
- okText: '确定',
- cancelText: '取消',
- placeholder: '请选择',
- options: [],
- popClassName: '',
- popStyle: '',
- maskClosable: true,
- onFormat: null,
- };
|