index.js 377 B

12345678910111213141516171819202122232425
  1. // index.js
  2. // 获取应用实例
  3. const app = getApp()
  4. Page({
  5. data: {
  6. },
  7. onClickButton: function () {
  8. console.log('Button clicked.');
  9. },
  10. onLoad() {
  11. if (wx.getUserProfile) {
  12. this.setData({
  13. canIUseGetUserProfile: true
  14. })
  15. }
  16. console.log('Page loaded.');
  17. wx.setNavigationBarTitle({
  18. title: '查看订单'
  19. })
  20. },
  21. })