mf.js 366 B

1234567891011121314151617181920212223242526272829
  1. export default {
  2. clickNavto: (path, type) => {
  3. // console.log(path, type)
  4. if (type == 'redirect') {
  5. uni.redirectTo({
  6. url: path
  7. })
  8. }
  9. if (type == 'switchTab') {
  10. uni.switchTab({
  11. url: path
  12. })
  13. }
  14. if (type == 'navigateBack') {
  15. uni.navigateBack({
  16. delta: 1
  17. })
  18. }
  19. if (!type) {
  20. uni.navigateTo({
  21. url: path
  22. })
  23. }
  24. }
  25. }