Crmeb/app/pages/index/index.js

29 lines
489 B
JavaScript
Raw Normal View History

2025-04-28 09:21:04 +08:00
Page({
data: {
value: "",
navData: [{
id: "1",
text: "即将开团",
icon: "tosend",
color: "#ff0000"
},
{
id: "2",
text: "上新预告",
icon: "new-o",
color: "#36ab60"
},
{
id: "3",
text: "团购结束",
icon: "stop-circle-o",
color: "#36ab60"
}
]
},
onSearch(e) {
console.log('搜索内容:', e.detail);
// 处理搜索逻辑
},
})