1234567891011121314151617181920212223242526272829303132333435363738 |
- // pages/tabber/news/index.js
- const app=getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- selectInfo: {}
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- saoma:function(){
- wx.scanCode({
- onlyFromCamera: true,
- success (res) {
- wx.navigateTo({
- url: '/pages/cabinet/index',
- })
- }
-
- })
- },
-
- })
|