Files
cardtest/pages/car/index.js
zhangmanman b5c5316f8b [更新]
2021-06-29 14:15:41 +08:00

37 lines
485 B
JavaScript

/*
* 本时生活
*/
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad (options) {
console.log(options)
// this.couponInfo()
},
/**
* 生命周期函数--监听页面显示
*/
onShow () {
},
/**
* 卡券列表
*/
couponInfo() {
wx.$api.user.washcarBuy().then(res=>{
console.log(res)
})
}
})