12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- var app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- total_getorder_count: 0,
- system_send_ordercount: 0,
- has_send_count: 0,
- total_commiss_money: 0
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- this.getData();
- },
- getData: function () {
- let token = wx.getStorageSync('token');
- app.util.ProReq('localtown.get_distribution_statics', { token }).then(res => {
- console.log(res)
- let { total_getorder_count, system_send_ordercount, has_send_count, total_commiss_money } = res.data;
- this.setData({
- total_getorder_count, system_send_ordercount, has_send_count, total_commiss_money
- })
- }).catch(err => {
- console.log(err)
- app.util.message(err.msg || '请求出错', 'switchTo:/lionfish_comshop/pages/user/me', 'error');
- })
- }
- })
|