123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- 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)
-
- }
- })
|