global.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import { J_STORAGE_KEY } from '../config/constant'
  2. const toastIcons = {
  3. success: require('../static/images/icon/success-icon.png'),
  4. fail: require('../static/images/icon/fail-icon.png'),
  5. info: require('../static/images/icon/info-icon.png')
  6. }
  7. export default {
  8. install(Vue) {
  9. Vue.mixin({
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. /**
  16. * title: 提示标题
  17. * type: 提示icon 类型
  18. * icon: 是否显示icon
  19. * duration:停留时间
  20. * content: 详细描述
  21. */
  22. ttoast(config) {
  23. const tuiToastRef = this.$refs.toast
  24. if (!tuiToastRef) {
  25. console.warn('该页面没有 tui-toast 元素,toast调用失败')
  26. return
  27. }
  28. if (typeof config === 'string') {
  29. tuiToastRef.show({
  30. title: config,
  31. imgUrl: toastIcons.success,
  32. icon: true
  33. })
  34. } else {
  35. const {
  36. title,
  37. type = 'success',
  38. icon = true,
  39. duration = 2000,
  40. content = ''
  41. } = config
  42. this.$refs.toast.show({
  43. title,
  44. imgUrl: toastIcons[type],
  45. icon,
  46. duration,
  47. content
  48. })
  49. }
  50. },
  51. empty(text) {
  52. this.ttoast({
  53. type: 'info',
  54. title: text || '功能尚未开放',
  55. content: '敬请期待~'
  56. })
  57. },
  58. $isEmpty(obj) {
  59. return ['{}', '[]'].includes(JSON.stringify(obj))
  60. },
  61. getBeeUrl(url) {
  62. return url.includes('http')
  63. ? url
  64. : 'https://adminapi.jfcmei.com/admin/storage/fetch/' +
  65. url
  66. },
  67. // 是否登录
  68. $isLogin() {
  69. const userInfo = uni.getStorageSync(J_STORAGE_KEY)
  70. return userInfo && !this.$isEmpty(userInfo)
  71. }
  72. }
  73. })
  74. }
  75. }