| 1234567891011121314151617181920212223242526272829303132333435363738 |
- import common from '../../utils/util';
- import main from '../../utils/main';
- const app = getApp();
- Page({
- data: {
- List:[1],
- IsSelectGrade:false,
- GradeArr: [{ Name: "一年级" }, { Name: "二年级" }, { Name: "三年级"}],
- },
- onLoad: function (options) {
- var that = this;
- that.setData({
- Containnerheight: main.getWindowHeight(),
- });
- },
- showSelectGrade: function () {
- var that = this;
- that.setData({
- IsSelectGrade: true,
- });
- },
- closeSelectGrade:function(){
- var that = this;
- that.setData({
- IsSelectGrade: false,
- });
- },
- onShareAppMessage: function () {
- return {
- title: app.globalData.ShareTitle,
- path: app.globalData.SharePath + '?UserID=' + app.globalData.userInfo.UserID,
- imageUrl: app.globalData.ShareImage,
- }
- },
- })
|