common.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. const isUserId = function() {
  2. var userId=uni.getStorageSync("wxOpenData").loginInfo.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. // 防止处理多次点击
  15. function noMultipleClicks(methods, info) {
  16. // methods是点击后需要执行的函数, info是函数需要传的参数
  17. let that = this;
  18. if (that.noClick) {
  19. // 第一次点击
  20. that.noClick= false;
  21. if((info && info !== '') || info ==0) {
  22. // info是执行函数需要传的参数
  23. methods(info);
  24. } else {
  25. methods();
  26. }
  27. setTimeout(()=> {
  28. that.noClick= true;
  29. }, 3000)
  30. } else {
  31. // 这里是重复点击的判断
  32. }
  33. }
  34. function getExtStoreId(type){
  35. try{
  36. const extConfig = uni.getExtConfigSync ? uni.getExtConfigSync() : {shopId:'默认的门店id'}
  37. console.log(extConfig,'extJson对象');
  38. //return extConfig[type];
  39. return extConfig
  40. }catch(err){
  41. console.log(err,'getExtStoreId__error')
  42. }
  43. }
  44. export default {
  45. commonData:{
  46. companyType:1,
  47. },
  48. isUserId,
  49. getExtStoreId,
  50. noMultipleClicks, // 禁止多次点击
  51. }