碧桂园
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.

20 regels
299 B

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