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.

27 lines
382 B

  1. // components/checked/checked.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. },
  8. /**
  9. * 组件的初始数据
  10. */
  11. data: {
  12. },
  13. /**
  14. * 组件的方法列表
  15. */
  16. methods: {
  17. onRet: function () {
  18. wx.reLaunch({
  19. url: "/Pages/travel/home/home",
  20. });
  21. },
  22. }
  23. })