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.
20 lines
529 B
20 lines
529 B
4 years ago
|
var global = require("../../utils/config.js")
|
||
|
const app = getApp()
|
||
|
Page({
|
||
|
data: {
|
||
|
webUrl: "",
|
||
|
nvabarData: {
|
||
|
showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
|
||
|
title: "注册", //导航栏 中间的标题
|
||
|
},
|
||
|
height: app.globalData.height * 2 + 20 ,
|
||
|
},
|
||
|
onLoad: function (options) {
|
||
|
console.log("code3:", options.code)
|
||
|
let date = Date.parse(new Date())
|
||
|
this.setData({
|
||
|
webUrl: global.WEBROOT() + "scanCode/"+options.code+"?t="+date+""
|
||
|
})
|
||
|
}
|
||
|
})
|