studyplus/app.js
2020-02-14 23:12:58 +08:00

61 lines
954 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var daraObj = require("data/data.js")
import {
DBPost
} from 'db/DBpost.js';
App({
/**
* 当小程序初始化完成时,会触发 onLaunch全局只触发一次
*/
onLaunch: function() {
},
/**
* 当小程序启动,或从后台进入前台显示,会触发 onShow
*/
onShow: function(options) {
},
/**
* 当小程序从前台进入后台,会触发 onHide
*/
onHide: function() {
},
/**
* 当小程序发生脚本错误,或者 api 调用失败时,会触发 onError 并带上错误信息
*/
onError: function(msg) {
},
globalData: {
xingming: "",
xuehao: "",
zhuanye: "",
xueyuan: "",
UQ: "",
nicheng: "",
mima: "",
shijian: "",
didian: "",
renyuan1: "",
renyuan2: "",
shijianchuo: "",
banji1: '',
banji2: '',
banji3: '',
banji4: '',
banji5: '',
queqin: [0],
bingjia: [0],
shijia: [0]
}
})