mainUtil.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import { J_STORAGE_KEY } from '../config/constant'
  2. /**
  3. * 获取用户userid
  4. * @returns
  5. */
  6. export const getBuyerUserId = () => {
  7. const userId = uni.getStorageSync(J_STORAGE_KEY).buyerUserId
  8. if (!userId) {
  9. uni.showModal({
  10. title: '提示',
  11. content: '您还未登录,是否去登录?',
  12. success(res) {
  13. if (res.confirm) {
  14. uni.navigateTo({
  15. url: 'pages_category_page2/userModule/login'
  16. })
  17. } else if (res.cancel) {
  18. // uni.navigateBack();
  19. }
  20. }
  21. })
  22. return
  23. }
  24. return userId
  25. }
  26. /**
  27. * 获取用户token
  28. * @returns
  29. */
  30. export const getUserToken = () => {
  31. const token = uni.getStorageSync(J_STORAGE_KEY).token
  32. if (!token) {
  33. uni.showModal({
  34. title: '提示',
  35. content: '您还未登录,是否去登录?',
  36. success(res) {
  37. if (res.confirm) {
  38. uni.navigateTo({
  39. url: 'pages_category_page2/userModule/login'
  40. })
  41. } else if (res.cancel) {
  42. // uni.navigateBack();
  43. }
  44. }
  45. })
  46. return
  47. }
  48. return token
  49. }
  50. // 判断当前是否处于微信环境
  51. export const isInWx = () => {
  52. // #ifdef H5
  53. var ua = navigator.userAgent.toLowerCase()
  54. return ua.match(/MicroMessenger/i) == 'micromessenger'
  55. // #endif
  56. // #ifdef APP
  57. return false
  58. // #endif
  59. }
  60. export const getUrlCode = () => {
  61. var url = location.search
  62. var theRequest = new Object()
  63. if (url.indexOf('?') != -1) {
  64. var str = url.substr(1)
  65. var strs = str.split('&')
  66. for (var i = 0; i < strs.length; i++) {
  67. theRequest[strs[i].split('=')[0]] = strs[i].split('=')[1]
  68. }
  69. }
  70. console.log('code结果', theRequest)
  71. return theRequest
  72. }