modal.js 741 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 1.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : LQ
  7. * @lastTime : 2021-08-20 17:15:59
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/modal.js
  9. */
  10. export default {
  11. // modal 组件
  12. modal: {
  13. show: false,
  14. title: '',
  15. content: '',
  16. confirmText: '确认',
  17. cancelText: '取消',
  18. showConfirmButton: true,
  19. showCancelButton: false,
  20. confirmColor: '#2979ff',
  21. cancelColor: '#606266',
  22. buttonReverse: false,
  23. zoom: true,
  24. asyncClose: false,
  25. closeOnClickOverlay: false,
  26. negativeTop: 0,
  27. width: '650rpx',
  28. confirmButtonShape: ''
  29. }
  30. }