const app = getApp(); Page({ data: { sumYearAmnt: 0, incomeList: [] }, onShow() { app.$api.getSettings().then(setting => { let incomeList = setting.data.INCOME_SETTING; app.$api.getSettingsIncome().then(res => { let result = res.data; incomeList.forEach(item => { let money = 0 if (result[item.id]){ money = result[item.id]; } if (!money){ money = 0 } item.money = money; }) let sumYearAmnt = result[-1]; this.setData({incomeList,sumYearAmnt}) }); }); }, handleClick() { wx.navigateTo({ url : "../edit/index?isAccount=0&isIncome=1&isAdd=1" }) } });