index.js 275 B

123456789101112131415
  1. Page({
  2. data: {},
  3. onLoad: function (options) {
  4. wx.setNavigationBarTitle({ title: '语伴' });
  5. },
  6. onShareAppMessage: function () {
  7. return {
  8. title: '语伴 - 你的AI语言伙伴',
  9. path: 'yuban/pages/index/index',
  10. imageUrl: '',
  11. }
  12. },
  13. })