消毒机设备
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
518 B

  1. import { ElMessageBox } from 'element-plus'
  2. export const FtMessageBox = {
  3. error: (message: string) => {
  4. ElMessageBox.confirm(
  5. message,
  6. '错误提示',
  7. {
  8. showCancelButton: false,
  9. confirmButtonText: '确认',
  10. type: 'error',
  11. },
  12. )
  13. },
  14. warning: (message: string) => {
  15. return ElMessageBox.confirm(
  16. message,
  17. '提示',
  18. {
  19. cancelButtonText: '取消',
  20. confirmButtonText: '确认',
  21. type: 'warning',
  22. },
  23. )
  24. },
  25. }