1234567891011121314151617181920 |
- // pages/home/webview/webview.js
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- url:'https://www.jucai.gov.cn/rcstfwlt/#/'
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- return {
- title: "晋爱人才",
- path: "/pages/home/home/home",
- };
- }
- })
|