shared.js 388B

12345678910111213141516171819202122
  1. export const pickerProps = {
  2. title: String,
  3. loading: Boolean,
  4. showToolbar: Boolean,
  5. cancelButtonText: {
  6. type: String,
  7. value: '取消'
  8. },
  9. confirmButtonText: {
  10. type: String,
  11. value: '确认'
  12. },
  13. visibleItemCount: {
  14. type: Number,
  15. value: 5
  16. },
  17. itemHeight: {
  18. type: Number,
  19. value: 44
  20. }
  21. };