12345678910111213141516171819202122232425 |
- // index.js
- // 获取应用实例
- const app = getApp()
- Page({
- data: {
-
- },
-
- onClickButton: function () {
- console.log('Button clicked.');
- },
- onLoad() {
- if (wx.getUserProfile) {
- this.setData({
- canIUseGetUserProfile: true
- })
- }
- console.log('Page loaded.');
- wx.setNavigationBarTitle({
- title: '查看订单'
- })
- },
- })
|