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

99 lines
1.4 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-05-15 14:30:16 +08:00
const app = getApp<IAppOption>()
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() {
2023-05-15 14:30:16 +08:00
console.log(app.globalData.isLogin)
if(app.globalData.isLogin) {
const res = await api.getMyWineList({
current:1,
size:10
})
if(res.code === 200) {
}
}
else{ // 跳转登录页
wx.navigateTo({
url:'../login/login'
})
2023-05-08 11:12:18 +08:00
}
2023-05-15 14:30:16 +08:00
2023-04-28 18:04:49 +08:00
}
})