// packageE/ConsumePacket/ConsumePacketSuccess/ConsumePacketSuccess.js const app = getApp(); Page({ /** * 页面的初始数据 */ data: { money: "", order_id: "", diyShow: false, diyform: { form_id: "", diyform_data_id: "", pre_id: "" }, }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { console.log(options); let language = wx.getStorageSync('langIndex'); this.setData({ 'language': language.en }); if (options.from_id) { this.setData({ ["diyform.form_id"]: options.from_id }); } if (options.price) { this.setData({ money: options.price }); } console.log(this.data.diyform); // this.getConsumePacket(); }, // 表单回来的form_data_id traCheckedData(e) { let diyform_data_id = e.detail.diyform_data_id; console.log(e); if (diyform_data_id) { this.setData({ diyShow: false }); this.getdata(diyform_data_id); } }, tapList() { wx.navigateTo({ url: '/packageH/reserveFunds/getlist/getlist', }); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () {}, /** * 生命周期函数--监听页面显示 */ onShow: function () {}, /** * 生命周期函数--监听页面隐藏 */ onHide: function () {}, /** * 生命周期函数--监听页面卸载 */ onUnload: function () {}, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () {}, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () {}, /** * 用户点击右上角分享 */ onShareAppMessage: function () {}, showDiyClose() { this.setData({ diyShow: false }); }, toPacketList() { // wx.redirectTo({ // url: "/packageH/reserveFunds/index/index", // }); this.setData({ diyShow: true }); }, getdata(id) { let that = this; let json = { from_data_id: id, price:that.data.money }; let urlStr = app.getNetAddresss( "plugin.reserve-fund.api.Income.updateReceiveBonus" ); app._getNetWork({ url: urlStr, data: json, success: function (resdata) { var res = resdata.data; if (res.result == 1) { // 领取完清空 that.setData({ money: 0, }); } else { wx.showToast({ icon: "none", title: res.msg, duration: 1500, }); } }, fail: function (res) { console.log(res); }, }); }, });