| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import common from '../../utils/util';
- import main from '../../utils/main';
- var app = getApp();
- Page({
- data: {
- PanelShow: 0,
- ImagePath: app.globalData.uploadImageUrl,
- },
- onLoad: function (options) {
- var that = this;
- that.setData({
- Containnerheight: main.getWindowHeight(),
- });
- that.init();
- wx.setNavigationBarColor({
- frontColor: "#ffffff",
- backgroundColor: "#9BD41C",
- });
- },
- init: function () {
- var that = this;
- main.getData("GetClassList?Flag=0", function (data) {
- if (data && data.length>0) {
- that.setData({
- StartDate: common.formatDateCHS(data[0].StartDate),
- })
- }
- });
- },
- payMoney: function () {
- var that = this;
- var money = 1;
- var detail = {};
-
- //console.log(detail);
- //console.log(money);
- var remark = null;
- main.payMoney(9, remark, money, detail, function () {
- that.setData({
- PanelShow:1,
- });
- wx.setNavigationBarColor({
- frontColor: "#000000",
- backgroundColor: "#ffffff",
- });
- });
- },
- 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,
- }
- },
- })
|