message.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. import store from '@/store'
  2. import { SET_LOADING } from '@/store/mutation-types'
  3. export default {
  4. showLoading(black = true, mask = false) {
  5. store.commit(SET_LOADING, { show: true, mask, black })
  6. },
  7. hideLoading() {
  8. store.commit(SET_LOADING, { show: false })
  9. },
  10. showNotify(type, message, duration = 1500, background = true) {
  11. if (!store.state.notify) return
  12. store.state.notify[type]({
  13. content: message,
  14. duration: duration,
  15. background: background
  16. })
  17. },
  18. info(message, duration = 1500, background = true) {
  19. this.showNotify('info', message, duration, background)
  20. },
  21. success(message, duration = 1500, background = true) {
  22. this.showNotify('success', message, duration, background)
  23. },
  24. error(message, duration = 2000, background = true) {
  25. this.showNotify('error', message, duration, background)
  26. },
  27. warn(message, duration = 2000, background = true) {
  28. this.showNotify('warn', message, duration, background)
  29. },
  30. alert(message, callback, title) {
  31. uni.showModal({
  32. title: title || '提示',
  33. showCancel: false,
  34. content: message,
  35. success: (res) => {
  36. if (callback) {
  37. callback()
  38. }
  39. }
  40. })
  41. },
  42. confirm(message, callback, title, buttonName, cancel) {
  43. var confirmText, cancelText
  44. if (buttonName) {
  45. if (buttonName.length == 1) {
  46. confirmText = buttonName[0]
  47. } else if (buttonName.length == 2) {
  48. confirmText = buttonName[0]
  49. cancelText = buttonName[1]
  50. }
  51. }
  52. uni.showModal({
  53. title: title || '',
  54. content: message,
  55. confirmText: confirmText || '确定',
  56. cancelText: cancelText || '取消',
  57. confirmColor: '#16953C',
  58. success: (res) => {
  59. if (res.confirm) {
  60. if (callback) {
  61. callback()
  62. }
  63. } else if (res.cancel) {
  64. if (cancel) {
  65. cancel()
  66. }
  67. }
  68. }
  69. })
  70. }
  71. }