common.js 808 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. class Common{
  2. constructor() {
  3. }
  4. //跳转
  5. navTo(url){
  6. uni.navigateTo({
  7. url:url
  8. })
  9. }
  10. goback(url){
  11. var page = getCurrentPages();
  12. let windpowerstationName = uni.getStorageSync('windpowerstationName');
  13. page[0].$vm.address = windpowerstationName;
  14. // uni.showModal({
  15. // title: '提示',
  16. // content: page,
  17. // success: function (res) {
  18. // if (res.confirm) {
  19. // console.log('用户点击确定');
  20. // } else if (res.cancel) {
  21. // console.log('用户点击取消');
  22. // }
  23. // }
  24. // });
  25. // uni.switchTab({
  26. // url: url,success: function(e) {
  27. // //if (page[0] == undefined || page[0] == null) return;
  28. // page[page.length-1].onLoad();
  29. // }
  30. // })
  31. }
  32. }
  33. let common = new Common();
  34. export default common;