| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import common from '../../utils/util';
- import server from '../../utils/main';
- const app = getApp();
- Page({
- data: {
- },
- onLoad: function (options) {
- this.setData({
- Height: common.getSystemHeight(),
- });
- },
- deblocking: function () {
- wx.reLaunch({
- url: '../index/index'
- });
- },
- gotoPayList: function () {
- wx.navigateTo({
- url: './paylist',
- });
- },
- gotoNewUserList: function () {
- wx.navigateTo({
- url: './newuserlist',
- });
- },
- onShareAppMessage: function () {
- return {
- title: '让阅读赢在起点',
- path: 'pages/index/index?UserID=' + app.globalData.userInfo.UserID,
- imageUrl: '../../images/07001.png',
- success: function (res) {
- },
- fail: function (err) {
- console.log(err);
- },
- complete: function (res) {
- console.log(res);
- },
- }
- },
- })
|