Page({
data: {
hotBrands: []
},
onShow: function () {
this .initData();
},
initData() {
var hotBrands = [{id: "1" , name: "test1" , logo: "https://standby.cheshijian.net/zx_cb_web/userfiles/image201708/17/UPpYLVvyatRfM3hraNg7Ay.jpg" },
{id: "2" , name: "test2" , logo: "https://standby.cheshijian.net/zx_cb_web/userfiles/image201708/17/UPpYLVvyatRfM3hraNg7Ay.jpg" },
{id: "3" , name: "test3" , logo: "https://standby.cheshijian.net/zx_cb_web/userfiles/image201708/17/UPpYLVvyatRfM3hraNg7Ay.jpg" },
{id: "4" , name: "test4" , logo: "https://standby.cheshijian.net/zx_cb_web/userfiles/image201708/17/UPpYLVvyatRfM3hraNg7Ay.jpg" },
{id: "5" , name: "test5" , logo: "https://standby.cheshijian.net/zx_cb_web/userfiles/image201708/17/UPpYLVvyatRfM3hraNg7Ay.jpg" },
{id: "6" , name: "test6" , logo: "https://standby.cheshijian.net/zx_cb_web/userfiles/image201708/17/UPpYLVvyatRfM3hraNg7Ay.jpg" },
{id: "7" , name: "test7" , logo: "https://standby.cheshijian.net/zx_cb_web/userfiles/image201708/17/UPpYLVvyatRfM3hraNg7Ay.jpg" },
{id: "8" , name: "test8" , logo: "https://standby.cheshijian.net/zx_cb_web/userfiles/image201708/17/UPpYLVvyatRfM3hraNg7Ay.jpg" }];
this .setData({
hotBrands: hotBrands
});
}
})
|