| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import common from '../../utils/util';
- import main from '../../utils/main';
- var app = getApp();
- Page({
- data: {
- PayPanel: 0,
- },
- onLoad: function (options) {
- var that = this;
- that.setData({
- Containnerheight: main.getWindowHeight(),
- });
- },
- copyManager: function () {
- wx.setClipboardData({
- data: "秒过学习法",
- success(res) {
- wx.showModal({
- title: '已复制',
- showCancel: false,
- content: "请在微信添加公众号中长按粘贴。",
- confirmText: "知道了",
- });
- }
- });
- },
- gotoIndex: function () {
- wx.reLaunch({
- url: '../index/index',
- })
- },
- onShareAppMessage: function () {
- return {
- title: app.globalData.ShareTitle,
- path: app.globalData.SharePath + '?UserID=' + app.globalData.userInfo.UserID,
- imageUrl: app.globalData.ShareImage,
- }
- },
- })
|