请问为什么在手机端预览的时候点击详情没有跳转呢?代码和老师的是一样的呀?下面的是代码,麻烦高手给看一下。
proList:[
{
logo:'/pages/images/item-pic1.jpg',
title:'精英贷',
shortDesc:'22周岁以上即可\n最快三小时下款\n件均8万,最高20万',
tell:12345678,
banner:'/pages/images/banner_01.jpg',
introduce:'1.打卡工资2000元以上\n2.带工作证明来公司就可以\n'
},
onLoad:function(){
this.setDAta({
test:'01',
})
},
toDetail:function(e){
console.log(e);
var index = e.currentTarget.dataset.index;
console.log(index);
var title = proList[index].title;
wx.setStorageSync('title', title);
wx.navigateTo({
url: '/pages/detail/detail',
},
)
}