123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // pages/homePage/homePage.js
- Page({
- data: {
- },
- onLoad(options) {
- },
-
- onReady() {
- },
-
- onShow() {
- },
-
- onHide() {
- },
-
- onUnload() {
- },
-
- onPullDownRefresh() {
- },
-
- onReachBottom() {
- },
-
- onShareAppMessage() {
- },
- onRmove(e){
- wx.showModal({
- title: '信息完善',
- content: "为校园人员使用,新用户请完善个人信息。",
- success(res) {},
- fail(res) {},
- showCancel: false,
- confirmText: "确定", //默认是“确定”
- })
- }
- })
|