123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- const app = getApp()
- const util = require("../../utils/util")
- const urlDef = require("../../utils/urls")
- Page({
-
- data: {
- source: null,
- target: null,
- lessonsList: [],
- stayList: [],
- },
-
- onLoad: function (options) {
- let o = JSON.parse(options.data)
- let s = o.source
- let t = o.target
- if (t == null || t == undefined) {
- const urls = urlDef.urls;
- t = {}
- this.setData({ lessonsList: [s], target: t })
- util.apiPost(urls.makeup_detail + '&q.attenceStudentId=' + s.makeupId).then((rs) => {
- t = rs[0]
- if (t.beginTime) {
- t.beginTime = t.beginTime.replace('T', ' ').substring(0, 16)
- }
- this.setData({ target: t, stayList: [t] })
- });
- } else {
- if (t.beginTime) {
- t.beginTime = t.beginTime.replace('T', ' ').substring(0, 16)
- }
- this.setData({ target: t, stayList: [t] })
- }
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|