actionSheet.js 669 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 3.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : jry
  7. * @lastTime : 2025-08-16 10:52:35
  8. * @FilePath : /uview-plus/libs/config/props/actionSheet.js
  9. */
  10. export default {
  11. // action-sheet组件
  12. actionSheet: {
  13. show: false,
  14. title: '',
  15. description: '',
  16. actions: [],
  17. nameKey: 'name',
  18. subnameKey: 'subnameKey',
  19. index: '',
  20. cancelText: '',
  21. closeOnClickAction: true,
  22. safeAreaInsetBottom: true,
  23. openType: '',
  24. closeOnClickOverlay: true,
  25. round: 0,
  26. wrapMaxHeight: '600px'
  27. }
  28. }