123456789101112131415161718192021222324 |
- // pages/sorting/enter/enter.js
- const app =getApp()
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- app.api.getInfo({id:2}).then(res=>{
- console.log(res.data);
- })
- },
- toResult(){
-
- }
- })
|