update
This commit is contained in:
parent
2c43f1f969
commit
54f1c608c2
26
app.js
26
app.js
@ -11,31 +11,7 @@ App({
|
||||
* 当小程序初始化完成时,会触发 onLaunch(全局只触发一次)
|
||||
*/
|
||||
onLaunch: function() {
|
||||
// var dbPost = new DBPost();
|
||||
// var loginTime = dbPost.getloginTimeData(); //获取上次登陆时间,没有记录为0
|
||||
// if (loginTime) {
|
||||
// var timestamp = +new Date();
|
||||
// timestamp = timestamp / 1000;
|
||||
// timestamp = parseInt(timestamp);
|
||||
// var difference = timestamp - loginTime; //两次时间差
|
||||
// if (difference >= 86400) {
|
||||
// wx.clearStorageSync();
|
||||
// wx.redirectTo({
|
||||
// url: 'welcome/login/login'
|
||||
// })
|
||||
// console.log("登录超时")
|
||||
// } else {
|
||||
// wx.switchTab({
|
||||
// url: 'pages/post/post'
|
||||
// })
|
||||
// console.log("校验通过")
|
||||
// }
|
||||
// } else {
|
||||
// wx.redirectTo({
|
||||
// url: 'welcome/login/login'
|
||||
// })
|
||||
// console.log("无登录记录")
|
||||
// }
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
|
6
app.json
6
app.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"pages": [
|
||||
"welcome/welcome/welcome",
|
||||
"welcome/welcome/welcome",
|
||||
"welcome/login/login",
|
||||
"pages/post/post",
|
||||
"pages/feedBack/feedBack",
|
||||
@ -12,7 +12,6 @@
|
||||
"pages/post/QRcode/QRcode",
|
||||
"pages/user/xinxi/xinxi",
|
||||
"welcome/signin/signin",
|
||||
|
||||
"pages/user/guanyu/guanyu",
|
||||
"pages/user/user"
|
||||
],
|
||||
@ -39,5 +38,6 @@
|
||||
"selectedIconPath": "images/home/user2.png"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"sitemapLocation": "sitemap.json"
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.6 KiB |
BIN
images/info.png
Normal file
BIN
images/info.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.5 KiB |
@ -1,4 +1,4 @@
|
||||
/* manage/select/select.wxss */
|
||||
/* manage/select/select.wxss */
|
||||
|
||||
/* welcome/signin/signin.wxss */
|
||||
|
||||
|
@ -85,7 +85,7 @@ Page({
|
||||
_type: "程序错误",
|
||||
placeholder:"首先恭喜你遇到了Bug!我们一起来干掉它如何?"
|
||||
})
|
||||
console.log(this.data.type)
|
||||
console.log(this.data._type)
|
||||
},
|
||||
box_2() { //优化改进点击事件
|
||||
this.setData({
|
||||
@ -96,7 +96,7 @@ Page({
|
||||
placeholder: "觉得界面太丑?你有好的点子?欢迎成为我们的UI设计师!!"
|
||||
|
||||
})
|
||||
console.log(this.data.type)
|
||||
console.log(this.data._type)
|
||||
},
|
||||
box_3() { //新功能点击事件
|
||||
this.setData({
|
||||
@ -107,7 +107,7 @@ Page({
|
||||
placeholder: "Come on! 来点紧张刺激的怎么样~"
|
||||
|
||||
})
|
||||
console.log(this.data.type)
|
||||
console.log(this.data._type)
|
||||
},
|
||||
fankui(e) { //反馈内容输入
|
||||
this.data.feedBack = e.detail.value
|
||||
|
@ -116,6 +116,9 @@ Page({
|
||||
|
||||
},
|
||||
sumit: function() {
|
||||
wx.removeStorage({
|
||||
key:"shijianchuo"
|
||||
})
|
||||
wx.switchTab({
|
||||
url: '../post'
|
||||
})
|
||||
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"navigationBarBackgroundColor": "#0061bf",
|
||||
"navigationBarBackgroundColor": "#003b97",
|
||||
"navigationBarTitleText": "正在签到"
|
||||
}
|
@ -5,7 +5,7 @@ Page({
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
|
@ -8,7 +8,7 @@
|
||||
<text>说明: 本小程序致力于提高查课的效率。</text>
|
||||
</view>
|
||||
<view class="detail-item" catchtap="guanyu">
|
||||
<text>版本: 1.0</text>
|
||||
<text>版本: 2.0</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class='kongbai'></view>
|
||||
|
@ -15,6 +15,8 @@
|
||||
"appid": "wx0df150c438e4c8f0",
|
||||
"projectname": "studyPlus",
|
||||
"isGameTourist": false,
|
||||
"simulatorType": "wechat",
|
||||
"simulatorPluginLibVersion": {},
|
||||
"condition": {
|
||||
"search": {
|
||||
"current": -1,
|
||||
|
7
sitemap.json
Normal file
7
sitemap.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
|
||||
"rules": [{
|
||||
"action": "allow",
|
||||
"page": "*"
|
||||
}]
|
||||
}
|
@ -30,7 +30,27 @@ Page({
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function() {
|
||||
|
||||
var login_state = wx.getStorageSync('login_state');
|
||||
if(login_state==1){
|
||||
wx.showToast({
|
||||
title: "登录超时",
|
||||
image:"../../images/info.png",
|
||||
duration: 2000
|
||||
})
|
||||
} else if (login_state == 2) {
|
||||
wx.showToast({
|
||||
image: "../../images/info.png",
|
||||
title: "您可能没注册过",
|
||||
duration: 2000
|
||||
})
|
||||
} else if (login_state == 3){
|
||||
wx.showToast({
|
||||
title: '您已经注册过了',
|
||||
image: "../../images/info.png",
|
||||
duration: 2000
|
||||
})
|
||||
}
|
||||
wx.removeStorageSync('login_state')
|
||||
},
|
||||
|
||||
/**
|
||||
@ -165,15 +185,5 @@ Page({
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
})
|
@ -18,7 +18,7 @@ Page({
|
||||
newnicheng: '',
|
||||
newmima: '',
|
||||
disabled: true,
|
||||
disabled1: true, //是否可用
|
||||
disabled1: true, //是否可用
|
||||
opacity: 0.4, //不透明度
|
||||
yanzhengjishu: 0, //验证计数
|
||||
newxuehao: 0, //验证学号
|
||||
@ -26,7 +26,7 @@ Page({
|
||||
xueyuan: 0, //1705
|
||||
banji: 0, //213
|
||||
geren: 0, //28
|
||||
openid: 0
|
||||
openid: 3
|
||||
},
|
||||
|
||||
/**
|
||||
@ -268,7 +268,7 @@ Page({
|
||||
}
|
||||
}
|
||||
},
|
||||
//密码的输入框
|
||||
//密码的输入框
|
||||
mima: function(e) {
|
||||
var that = this
|
||||
console.log('输入值为', e.detail.value)
|
||||
@ -297,7 +297,7 @@ Page({
|
||||
|
||||
|
||||
|
||||
//提交按钮确认
|
||||
//提交按钮确认
|
||||
sumit: function() {
|
||||
var that = this;
|
||||
var dbPost = new DBPost();
|
||||
@ -363,23 +363,6 @@ Page({
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
},
|
||||
|
||||
|
||||
@ -392,84 +375,103 @@ Page({
|
||||
newxuehao: (a + b + c)
|
||||
})
|
||||
var that = this;
|
||||
wx.request({
|
||||
url: 'https://powerrain.cn/rcs/API/yanzheng.php', //仅为示例,并非真实的接口地址
|
||||
data: {
|
||||
code: that.data.newxuehao
|
||||
},
|
||||
header: {
|
||||
'content-type': 'application/json' // 默认值
|
||||
},
|
||||
success: function(res) {
|
||||
console.log(res.data);
|
||||
if (res.data == null) {
|
||||
that.data.openid = 1;
|
||||
} else {
|
||||
that.data.openid = res.data.openid;
|
||||
}
|
||||
console.log(that.data.openid)
|
||||
if (!that.data.openid) {
|
||||
wx.showToast({
|
||||
title: '验证成功',
|
||||
icon: 'success',
|
||||
duration: 2000
|
||||
})
|
||||
if (that.data.yanzhengjishu != 0) { //判断是否可以点击完成注册
|
||||
that.setData({
|
||||
disabled: false,
|
||||
opacity: 1
|
||||
})
|
||||
} else {
|
||||
that.setData({
|
||||
disabled: true,
|
||||
opacity: 0.4
|
||||
})
|
||||
}
|
||||
} else {
|
||||
that.setData({
|
||||
disabled: true,
|
||||
opacity: 0.4
|
||||
})
|
||||
wx.vibrateShort()
|
||||
wx.showModal({
|
||||
title: '警告',
|
||||
content: '此学号已经被其他人绑定',
|
||||
confirmText: '重新选择',
|
||||
cancelText: '联系客服',
|
||||
confirmColor: '#10aeff',
|
||||
|
||||
wx.login({
|
||||
success(res) {
|
||||
if (res.code) {
|
||||
wx.request({
|
||||
url: 'https://powerrain.cn/rcs/API/yanzheng.php',
|
||||
data: {
|
||||
xuehao: that.data.newxuehao,
|
||||
code:res.code
|
||||
},
|
||||
header: {
|
||||
'content-type': 'application/json' // 默认值
|
||||
},
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
console.log('用户点击重新选择')
|
||||
} else if (res.cancel) {
|
||||
console.log(res.data);
|
||||
if(res.data=='1') {
|
||||
wx.setStorageSync('login_state', 3)
|
||||
wx.navigateTo({
|
||||
url: '../login/login'
|
||||
})
|
||||
}
|
||||
if (res.data == '3') {
|
||||
that.data.openid = 0;
|
||||
} else if(res.data == '2') {
|
||||
that.data.openid = 1;
|
||||
}
|
||||
console.log(that.data.openid)
|
||||
if (that.data.openid==0) {
|
||||
wx.showToast({
|
||||
title: '验证成功',
|
||||
icon: 'success',
|
||||
duration: 2000
|
||||
})
|
||||
if (that.data.yanzhengjishu != 0) { //判断是否可以点击完成注册
|
||||
that.setData({
|
||||
disabled: false,
|
||||
opacity: 1
|
||||
})
|
||||
} else {
|
||||
that.setData({
|
||||
disabled: true,
|
||||
opacity: 0.4
|
||||
})
|
||||
}
|
||||
} else if(that.data.openid ==1) {
|
||||
that.setData({
|
||||
disabled: true,
|
||||
opacity: 0.4
|
||||
})
|
||||
wx.vibrateShort()
|
||||
wx.showModal({
|
||||
title: '联系客服',
|
||||
content: 'QQ:1144131090',
|
||||
confirmText: '复制',
|
||||
title: '警告',
|
||||
content: '此学号已经被其他人绑定',
|
||||
confirmText: '重新选择',
|
||||
cancelText: '联系客服',
|
||||
confirmColor: '#10aeff',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
wx.setClipboardData({
|
||||
data: '1144131090',
|
||||
console.log('用户点击重新选择')
|
||||
} else if (res.cancel) {
|
||||
wx.showModal({
|
||||
title: '联系客服',
|
||||
content: 'QQ:1144131090',
|
||||
confirmText: '复制',
|
||||
confirmColor: '#10aeff',
|
||||
success: function(res) {
|
||||
wx.showToast({
|
||||
title: '复制成功',
|
||||
icon: 'success'
|
||||
})
|
||||
if (res.confirm) {
|
||||
wx.setClipboardData({
|
||||
data: '1144131090',
|
||||
success: function(res) {
|
||||
wx.showToast({
|
||||
title: '复制成功',
|
||||
icon: 'success'
|
||||
})
|
||||
}
|
||||
})
|
||||
console.log('用户点击确定')
|
||||
} else if (res.cancel) {
|
||||
console.log('用户点击取消')
|
||||
}
|
||||
}
|
||||
})
|
||||
console.log('用户点击确定')
|
||||
} else if (res.cancel) {
|
||||
console.log('用户点击取消')
|
||||
console.log('用户点击联系客服')
|
||||
}
|
||||
}
|
||||
})
|
||||
console.log('用户点击联系客服')
|
||||
}
|
||||
}
|
||||
})
|
||||
} else {
|
||||
console.log('登录失败!' + res.errMsg)
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
|
||||
this.setData({
|
||||
yanzhengjishu: this.data.yanzhengjishu + 1 //验证计数
|
||||
})
|
||||
|
@ -1,25 +1,64 @@
|
||||
// welcome/welcome/welcome.js
|
||||
import {
|
||||
DBPost
|
||||
} from '../../db/DBpost.js';
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
wx.showLoading({
|
||||
title: '登录中',
|
||||
})
|
||||
var dbPost = new DBPost();
|
||||
var loginTime = dbPost.getloginTimeData(); //获取上次登陆时间,没有记录为0
|
||||
if (loginTime) {
|
||||
var timestamp = +new Date();
|
||||
timestamp = timestamp / 1000;
|
||||
timestamp = parseInt(timestamp);
|
||||
var difference = timestamp - loginTime; //两次时间差
|
||||
if (difference >= 86400) {
|
||||
wx.clearStorageSync();
|
||||
setTimeout(function () {
|
||||
wx.hideLoading();
|
||||
wx.redirectTo({
|
||||
url: '../login/login'
|
||||
})
|
||||
}, 2000)
|
||||
wx.setStorageSync('login_state', 1)
|
||||
console.log("登录超时")
|
||||
} else {
|
||||
setTimeout(function () {
|
||||
wx.hideLoading();
|
||||
wx.switchTab({
|
||||
url: '../../pages/post/post'
|
||||
})
|
||||
}, 2000)
|
||||
console.log("校验通过")
|
||||
}
|
||||
} else {
|
||||
setTimeout(function () {
|
||||
wx.hideLoading();
|
||||
wx.redirectTo({
|
||||
url: '../login/login'
|
||||
})
|
||||
wx.setStorageSync('login_state', 2)
|
||||
}, 2000)
|
||||
console.log("无登录记录")
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user