| 12345678910111213141516171819202122232425262728293031323334 |
- 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 () {
-
- var imageUrl = app.globalData.uploadImageUrl +"web/program_screenshot_lesson_c0"+this.data.PageID+".png";
- var path = "/pages/index/index?type=webview&PageID="+this.data.PageID;
- var title ="《秒过学习法》课外课";
- if (this.data.PageID==="0"){
- imageUrl = "../images/program_screenshot_mustread.png";
- title="《秒过学习法》家长必读";
- }
- return {
- title: title,
- path: path,
- imageUrl: imageUrl,
- }
- },
- })
|