toast.js 956 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. Page({
  2. showToastSuccess() {
  3. my.showToast({
  4. type: 'success',
  5. content: '操作成功',
  6. duration: 3000,
  7. success: () => {
  8. my.alert({
  9. title: 'toast 消失了',
  10. });
  11. },
  12. });
  13. },
  14. showToastFail() {
  15. my.showToast({
  16. type: 'fail',
  17. content: '操作失败',
  18. duration: 3000,
  19. success: () => {
  20. my.alert({
  21. title: 'toast 消失了',
  22. });
  23. },
  24. });
  25. },
  26. showToastException() {
  27. my.showToast({
  28. type: 'exception',
  29. content: '网络异常',
  30. duration: 3000,
  31. success: () => {
  32. my.alert({
  33. title: 'toast 消失了',
  34. });
  35. },
  36. });
  37. },
  38. showToastNone() {
  39. my.showToast({
  40. type: 'none',
  41. content: '提醒',
  42. duration: 3000,
  43. success: () => {
  44. my.alert({
  45. title: 'toast 消失了',
  46. });
  47. },
  48. });
  49. },
  50. hideToast() {
  51. my.hideToast()
  52. },
  53. })