ai.js 412 B

12345678910111213141516171819202122232425
  1. // pages/home/webview/webview.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. url: ''
  8. },
  9. onLoad() {
  10. let token = wx.getStorageSync('token');
  11. this.setData({url:`https://chat.jucai.gov.cn/?token=${token}`});
  12. },
  13. /**
  14. * 用户点击右上角分享
  15. */
  16. onShareAppMessage: function () {
  17. return {
  18. title: "晋爱人才",
  19. path: "/pages/home/home/home",
  20. };
  21. }
  22. })