choice.js 296 B

1234567891011121314151617181920212223
  1. // pages/sorting/choice.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. },
  8. /**
  9. * 生命周期函数--监听页面加载
  10. */
  11. onLoad: function (options) {
  12. },
  13. toEnter(){
  14. wx.navigateTo({
  15. url: '../enter/enter',
  16. })
  17. }
  18. })