You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
2.0 KiB
TypeScript

1 year ago
// pages/home/home.ts
const api = require("../../api/index")
Page({
/**
*
*/
data: {
introduce:`在家制作鸡尾酒是一种生活方式`,
list:[
{
name:'the last word',
desc:'橙汁',
tag:'遗言',
id:1
},
{
name:'june bug',
tag:'六月虫',
desc:'青柠汁',
id:2
}
]
},
/**
* --
*/
onLoad() {
this.getList()
},
/**
* --
*/
onReady() {
},
/**
* --
*/
onShow() {
},
/**
* --
*/
onHide() {
},
/**
* --
*/
onUnload() {
},
/**
* --
*/
onPullDownRefresh() {
},
/**
*
*/
onReachBottom() {
console.log(1111);
},
/**
*
*/
onShareAppMessage() {
},
// 我喜欢的鸡尾酒
toStarFunc() {
wx.navigateTo({
url: '../star/star',
})
},
// 搜索配方
toSearchFunc() {
wx.navigateTo({
url: '../search/search',
})
},
toDetailFunc(data:any) {
console.log(data);
const item = data.currentTarget.dataset.item
wx.navigateTo({
url: '../detail/detail?name='+item.name+'&tag='+item.tag,
})
},
async getList() {//获取列表
const res = await api.getWineList({
current:1,
size:10
})
console.log(res);
if(res.code === 200) {
// if(res.data.materials.length>0) {
for(let item1 of res.data) {
item1.materials_str = ''
if(item1.materials.length>0) {
item1.materials.forEach((item:any,i:number) => {
item1.materials_str += item.name+','
});
}
console.log(item1.materials_str)
}
// }
}
},
})