1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // pages/index/index.js
- var app = getApp()
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- imgurl: app.data.resturl,
- dlist: []
- },
- getList: function () {
- var that = this;
- wx.request({
- url: app.data.resturl + '/gglist.action',
- data: {
- },
- success: function (res) {
- console.log(res);
- that.setData({
- dlist: res.data.dlist
- })
- }
- })
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- var that = this
- that.getList();
- }
- })
|