wineList-MiniApp/miniprogram/pages/star/star.ts

89 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-04-28 18:04:49 +08:00
// pages/star/star.ts
2023-05-08 11:12:18 +08:00
const api = require("../../api/index")
2023-04-28 18:04:49 +08:00
Page({
/**
*
*/
data: {
list:[
{
name:'the last word',
desc:'橙汁',
tag:'遗言',
id:1
},
{
name:'june bug',
tag:'六月虫',
desc:'青柠汁',
id:2
}
]
},
/**
* --
*/
onLoad() {
2023-05-08 11:12:18 +08:00
this.getList()
2023-04-28 18:04:49 +08:00
},
/**
* --
*/
onReady() {
},
/**
* --
*/
onShow() {
},
/**
* --
*/
onHide() {
},
/**
* --
*/
onUnload() {
},
/**
* --
*/
onPullDownRefresh() {
},
/**
*
*/
onReachBottom() {
},
/**
*
*/
onShareAppMessage() {
2023-05-08 11:12:18 +08:00
},
async getList() {
const res = await api.getMyWineList({
current:1,
size:10
})
if(res.code === 200) {
}
2023-04-28 18:04:49 +08:00
}
})