index.js 365 B

123456789101112131415161718
  1. const config = require('../../nutui.config')
  2. Page({
  3. data:{
  4. nav:config
  5. },
  6. go:function(e){
  7. console.log(e.currentTarget)
  8. let path = e.currentTarget.dataset.path
  9. wx.navigateTo({
  10. url: `/pages/basic/pages/${path.toLowerCase()}/index`,
  11. })
  12. },
  13. onLoad:function(){
  14. console.log(config)
  15. }
  16. })