global.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. import { toastIcons } from './data'
  2. export default {
  3. install(Vue) {
  4. Vue.mixin({
  5. methods: {
  6. /**
  7. * title: 提示标题
  8. * type: 提示icon 类型
  9. * icon: 是否显示icon
  10. * duration:停留时间
  11. * content: 详细描述
  12. */
  13. ttoast(config) {
  14. const tuiToastRef = this.$refs.toast
  15. if (!tuiToastRef) {
  16. console.warn('该页面没有 tui-toast 元素,toast调用失败')
  17. return
  18. }
  19. if (typeof config === 'string') {
  20. tuiToastRef.show({
  21. title: config,
  22. imgUrl: toastIcons['success'],
  23. icon: true,
  24. })
  25. } else {
  26. const {
  27. title,
  28. type = 'success',
  29. icon = true,
  30. duration = 2000,
  31. content = '',
  32. } = config
  33. this.$refs.toast.show({
  34. title,
  35. imgUrl: toastIcons[type],
  36. icon,
  37. duration,
  38. content,
  39. })
  40. }
  41. },
  42. empty(text) {
  43. this.ttoast({
  44. type: 'info',
  45. title: text || '功能尚未开放',
  46. content: '敬请期待~',
  47. })
  48. },
  49. },
  50. })
  51. },
  52. }