rcs.js 315 B

1234567891011121314151617181920
  1. // pages/home/webview/webview.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. url:'https://www.jucai.gov.cn/rcstfwlt/#/'
  8. },
  9. /**
  10. * 用户点击右上角分享
  11. */
  12. onShareAppMessage: function () {
  13. return {
  14. title: "晋爱人才",
  15. path: "/pages/home/home/home",
  16. };
  17. }
  18. })