common.js 360 B

12345678910111213141516171819202122
  1. const isUserId = function() {
  2. var userId=uni.getStorageSync("logodata").uid;
  3. //console.log("userId---"+userId)
  4. if(!userId){
  5. uni.navigateTo({
  6. url:'../login/login'
  7. })
  8. }
  9. }
  10. /* const uid =function() {
  11. var userId=uni.getStorageSync("logodata").uid;
  12. return
  13. } */
  14. export default {
  15. commonData:{
  16. companyType:1,
  17. },
  18. isUserId,
  19. }