You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
3 years ago
|
Page({
|
||
|
data: {
|
||
|
recommandBrand: [
|
||
|
{
|
||
|
img: "./cars/audi.jpg",
|
||
|
title: "奥迪"
|
||
|
},
|
||
|
{
|
||
|
img: "./cars/audi.jpg",
|
||
|
title: "奥迪"
|
||
|
},
|
||
|
{
|
||
|
img: "./cars/audi.jpg",
|
||
|
title: "奥迪"
|
||
|
},
|
||
|
{
|
||
|
img: "./cars/audi.jpg",
|
||
|
title: "奥迪"
|
||
|
},
|
||
|
{
|
||
|
img: "./cars/audi.jpg",
|
||
|
title: "奥迪"
|
||
|
},
|
||
|
{
|
||
|
img: "./cars/audi.jpg",
|
||
|
title: "奥迪"
|
||
|
},
|
||
|
{
|
||
|
img: "./cars/audi.jpg",
|
||
|
title: "奥迪"
|
||
|
}
|
||
|
],
|
||
|
popShow: false
|
||
|
},
|
||
|
onShow() {
|
||
|
this.getTabBar().init();
|
||
|
},
|
||
|
onClose() {
|
||
|
this.setData({
|
||
|
popShow: false
|
||
|
})
|
||
|
},
|
||
|
modalChoose() {
|
||
|
this.setData({
|
||
|
popShow: true
|
||
|
})
|
||
|
},
|
||
|
toModalInsight() {
|
||
|
wx.navigateTo({
|
||
|
url: "/pages/insight/pages/modalInsight/index"
|
||
|
})
|
||
|
}
|
||
|
})
|