14 lines
486 B
JavaScript
14 lines
486 B
JavaScript
Page({
|
|
data: {
|
|
url2: "https://wxminiapp.19year.cn/2.html",
|
|
url1: "https://wxminiapp.19year.cn/1.html",
|
|
url: ""
|
|
},
|
|
onLoad: function(t) {
|
|
console.log("id", t.id), "1" == t.id ? (console.log(1), this.setData({
|
|
url: "https://wxminiapp.19year.cn/1.html?dat=" + Date.now()
|
|
})) : (console.log(2), this.setData({
|
|
url: "https://wxminiapp.19year.cn/2.html?dat=" + Date.now()
|
|
})), console.log(this.url);
|
|
}
|
|
}); |