碧桂园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
305 B

  1. // index.js
  2. // 获取应用实例
  3. const app = getApp()
  4. Page({
  5. data: {
  6. },
  7. onLoad() {
  8. },
  9. tabindex(e) {
  10. let index= e.currentTarget.dataset.index
  11. wx.navigateTo({
  12. url: '../out/index?index=' +index,
  13. })
  14. },
  15. tabsaoma() {
  16. wx.navigateTo({
  17. url: '../AR/index',
  18. })
  19. }
  20. })