enter.js 352 B

123456789101112131415161718192021222324
  1. // pages/sorting/enter/enter.js
  2. const app =getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. },
  9. /**
  10. * 生命周期函数--监听页面加载
  11. */
  12. onLoad: function (options) {
  13. app.api.getInfo({id:2}).then(res=>{
  14. console.log(res.data);
  15. })
  16. },
  17. toResult(){
  18. }
  19. })