// pages/moreOrder/moreOrder.js Page({ /** * 页面的初始数据 */ data: { orders:[ { buttonMessage2:'去支付', buttonColor2:'#91cdcc', order:{ nozzle:5, oilName:"92#", volume:20.0, amount:46.8, payAmount:46.8, discount:0.00, orderId:'1', time:'2024-11-24 09:08' } } ] }, /** * 生命周期函数--监听页面加载 */ onLoad(options) { }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady() { }, /** * 生命周期函数--监听页面显示 */ onShow() { }, /** * 生命周期函数--监听页面隐藏 */ onHide() { }, /** * 生命周期函数--监听页面卸载 */ onUnload() { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh() { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom() { }, /** * 用户点击右上角分享 */ onShareAppMessage() { }, /** 点击去支付 */ toPay(event) { console.log(event) //跳转回支付页 } })