import { goto_camera, } from '../../utils.js' Page({ /** * Page initial data */ data: { }, /** * Lifecycle function--Called when page load */ onLoad(options) { var gd = getApp().globalData; gd.tenant_id = options.tenant_id || options.tenant; goto_camera(true); }, /** * Lifecycle function--Called when page is initially rendered */ onReady() { }, /** * Lifecycle function--Called when page show */ onShow() { }, /** * Lifecycle function--Called when page hide */ onHide() { }, /** * Lifecycle function--Called when page unload */ onUnload() { }, /** * Page event handler function--Called when user drop down */ onPullDownRefresh() { }, /** * Called when page reach bottom */ onReachBottom() { }, /** * Called when user click on the top right corner to share */ onShareAppMessage() { } })