123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- const util = require('../../utils/util.js');
- const APIClient = require('../../utils/APIClient.js');
- const login = require('../../utils/loginSchedule.js');
- Page({
-
- data: {
- mistakesData: [],
- animationData: {},
- flag: [],
- exponentData: []
- },
- particulars: function (e) {
- let flage = e.currentTarget.dataset.flag;
- let index = e.currentTarget.dataset.index;
- if(flage){
- this.util('60rpx');
- this.data.flag[index] = false;
- this.setData({
- flag: this.data.flag,
- })
- } else {
- this.data.flag[index] = true;
- this.util('164rpx');
- this.setData({
- flag: this.data.flag,
- })
- }
- },
-
- util (height) {
-
- var animation = wx.createAnimation({
- duration: 200,
- timingFunction: "linear",
- delay: 0
- });
-
- this.animation = animation;
- animation.height(height).step();
- this.setData({
- animationData: animation.export()
- })
- },
-
- onLoad: function (options) {
- login.getOpenidSessionKey(res => {
- APIClient.getErrorsSchedule({
- uid: res.data.data.uid
- },{
- pageNo: 1,
- pageSize: 1000,
- }).success(res => {
- console.log(res.data.data.list)
- this.setData({
- mistakesData: res.data.data.list
- })
- for(let item of res.data.data.list) {
- this.data.flag.push(false);
- }
- this.setData({
- flag: this.data.flag
- })
- })
-
- APIClient.getExponentSchedule({
- uid: res.data.data.uid
- }).success(res => {
- console.log(res);
- this.setData({
- exponentData: res.data.data
- })
- })
- }, function() {
- wx.showModal({
- title: '提示',
- content: '需要获取您的公开信息(昵称、头像等),请从小程序列表删除小学王者班后再次扫码进入,允许授权后可正常使用',
- showCancel: false,
- success: function (res) {
- if (res.confirm) {
- console.log('用户点击确定')
- } else if (res.cancel) {
- console.log('用户点击取消')
- }
- }
- })
- });
- },
-
- onReady: function () {
-
- },
-
- onShow: function () {
-
- },
-
- onHide: function () {
-
- },
-
- onUnload: function () {
-
- },
-
- onPullDownRefresh: function () {
-
- },
-
- onReachBottom: function () {
-
- },
-
- onShareAppMessage: function () {
-
- }
- })
|