toast-notify.js 252 B

123456789
  1. import store from '@/store'
  2. export function notify(title, duration = 1500, mask = false, icon = 'none') {
  3. if (!title) return
  4. uni.showToast({ title, duration, mask, icon })
  5. if (store.state.user && store.state.user.shock) {
  6. uni.vibrateShort()
  7. }
  8. }