| 1234567891011121314151617181920212223242526 |
- import common from '../../utils/util';
- import main from '../../utils/main';
- const app = getApp();
- Page({
- data: {
- },
- onLoad: function (options) {
- var that = this;
- that.setData({
- PageID:options.PageID,
- });
- },
- onUnload:function(){
- },
- onShareAppMessage: function () {
- return {
- title: app.globalData.ShareTitle,
- path: app.globalData.SharePath + '?LessonID=all&UserID=' + app.globalData.userInfo.UserID,
- imageUrl: "../images/program_screenshot_lesson1.png",
- }
- },
- })
|