index.js 843 B

1234567891011121314151617181920212223242526272829
  1. const storage = require('@/common/storage.js');
  2. export const loginToast = () => {
  3. const token = storage.getUserToken()
  4. if (!token) {
  5. uni.showModal({
  6. title: '提示',
  7. content: '您还未登录,请先登录',
  8. showCancel: false,
  9. confirmText: '确定',
  10. success: function(res) {
  11. if (res.confirm) {
  12. //#ifdef MP-ALIPAY
  13. uni.navigateTo({
  14. url: '/pages/phoneLogin/phoneLogin',
  15. })
  16. //#endif
  17. //#ifdef MP-WEIXIN
  18. uni.navigateTo({
  19. url: '/pages/login/login',
  20. })
  21. //#endif
  22. }
  23. }
  24. })
  25. return false
  26. }
  27. return true
  28. }