1234567891011121314151617181920212223 |
- // index.js
- // 获取应用实例
- const app = getApp()
- Page({
- data: {
-
- },
- // 事件处理函数
- bindViewTap() {
- wx.navigateTo({
- url: '../logs/logs'
- })
- },
- onLoad() {
- if (wx.getUserProfile) {
- this.setData({
- canIUseGetUserProfile: true
- })
- }
- },
- })
|