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.
 

25 lines
488 B

// pages/myCars/myCars.js
Page({
/**
* 页面的初始数据
*/
data: {
carsList: [1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9,1]
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
transToCarsDetail:function(event){
var itemID = event.currentTarget.dataset.detailitemid;
wx.navigateTo({
url: 'carsDetail/carsDetail?id=' + itemID,
})
},
})