格式化代码
This commit is contained in:
parent
3c1eef3297
commit
804f4f3a16
70
app.js
70
app.js
@ -1,4 +1,4 @@
|
||||
var daraObj=require("data/data.js")
|
||||
var daraObj = require("data/data.js")
|
||||
import {
|
||||
DBPost
|
||||
} from 'db/DBpost.js';
|
||||
@ -10,26 +10,30 @@ App({
|
||||
/**
|
||||
* 当小程序初始化完成时,会触发 onLaunch(全局只触发一次)
|
||||
*/
|
||||
onLaunch: function () {
|
||||
onLaunch: function() {
|
||||
var dbPost = new DBPost();
|
||||
var loginTime=dbPost.getloginTimeData();//获取上次登陆时间,没有记录为0
|
||||
if(loginTime){
|
||||
var timestamp = + new Date();
|
||||
var loginTime = dbPost.getloginTimeData(); //获取上次登陆时间,没有记录为0
|
||||
if (loginTime) {
|
||||
var timestamp = +new Date();
|
||||
timestamp = timestamp / 1000;
|
||||
timestamp = parseInt(timestamp);
|
||||
var difference=timestamp-loginTime;//两次时间差
|
||||
if(difference>=86400){
|
||||
var difference = timestamp - loginTime; //两次时间差
|
||||
if (difference >= 86400) {
|
||||
wx.clearStorageSync();
|
||||
wx.redirectTo({ url: 'welcome/login/login' })
|
||||
wx.redirectTo({
|
||||
url: 'welcome/login/login'
|
||||
})
|
||||
console.log("登录超时")
|
||||
}else{
|
||||
} else {
|
||||
wx.switchTab({
|
||||
url: 'pages/post/post'
|
||||
})
|
||||
console.log("校验通过")
|
||||
}
|
||||
}else{
|
||||
wx.redirectTo({ url: 'welcome/login/login' })
|
||||
} else {
|
||||
wx.redirectTo({
|
||||
url: 'welcome/login/login'
|
||||
})
|
||||
console.log("无登录记录")
|
||||
}
|
||||
},
|
||||
@ -37,45 +41,45 @@ App({
|
||||
/**
|
||||
* 当小程序启动,或从后台进入前台显示,会触发 onShow
|
||||
*/
|
||||
onShow: function (options) {
|
||||
|
||||
onShow: function(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 当小程序从前台进入后台,会触发 onHide
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
onHide: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 当小程序发生脚本错误,或者 api 调用失败时,会触发 onError 并带上错误信息
|
||||
*/
|
||||
onError: function (msg) {
|
||||
|
||||
onError: function(msg) {
|
||||
|
||||
},
|
||||
|
||||
globalData:{
|
||||
|
||||
globalData: {
|
||||
xingming: "",
|
||||
xuehao: "",
|
||||
zhuanye: "",
|
||||
xueyuan: "",
|
||||
UQ: "",
|
||||
nicheng:"",
|
||||
mima:"",
|
||||
shijian:"",
|
||||
didian:"",
|
||||
renyuan1:"",
|
||||
renyuan2:"",
|
||||
shijianchuo:"",
|
||||
banji1:'',
|
||||
banji2:'',
|
||||
banji3:'',
|
||||
banji4:'',
|
||||
banji5:'',
|
||||
nicheng: "",
|
||||
mima: "",
|
||||
shijian: "",
|
||||
didian: "",
|
||||
renyuan1: "",
|
||||
renyuan2: "",
|
||||
shijianchuo: "",
|
||||
banji1: '',
|
||||
banji2: '',
|
||||
banji3: '',
|
||||
banji4: '',
|
||||
banji5: '',
|
||||
queqin: [0],
|
||||
bingjia: [0],
|
||||
shijia: [0]
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
})
|
4
app.wxss
4
app.wxss
@ -1,4 +1,5 @@
|
||||
/**app.wxss**/
|
||||
|
||||
.container {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
@ -7,5 +8,4 @@
|
||||
justify-content: space-between;
|
||||
padding: 200rpx 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ Page({
|
||||
|
||||
},
|
||||
bindMultiPickerChange1: function(e) {
|
||||
this.data.xuehaonum= 1;
|
||||
this.data.xuehaonum = 1;
|
||||
if (this.data.xuehaonum && this.data.yuanyinnum) {
|
||||
this.setData({
|
||||
disabled: false
|
||||
@ -237,7 +237,7 @@ Page({
|
||||
this.setData(data);
|
||||
},
|
||||
bindMultiPickerChange2: function(e) {
|
||||
this.data.yuanyinnum= 1;
|
||||
this.data.yuanyinnum = 1;
|
||||
if (this.data.xuehaonum && this.data.yuanyinnum) {
|
||||
this.setData({
|
||||
disabled: false
|
||||
@ -252,14 +252,14 @@ Page({
|
||||
this.setData({
|
||||
yuanyinIndex: e.detail.value
|
||||
})
|
||||
this.data.yuanyin= this.data.yuanyinArray[0][this.data.yuanyinIndex[0]] //原因!!!!!
|
||||
this.data.yuanyin = this.data.yuanyinArray[0][this.data.yuanyinIndex[0]] //原因!!!!!
|
||||
console.log('原因', this.data.yuanyin);
|
||||
},
|
||||
sumit1: function() {
|
||||
var a = this.data.xueyuan
|
||||
var b = this.data.banji
|
||||
var c = this.data.geren
|
||||
this.data.newxuehao= (a + b + c)
|
||||
this.data.newxuehao = (a + b + c)
|
||||
console.log("学号为", this.data.newxuehao)
|
||||
console.log("原因为", this.data.yuanyin)
|
||||
var dbPost = new DBPost();
|
||||
|
@ -1,10 +1,6 @@
|
||||
<!--manage/absent/absent.wxml-->
|
||||
<view class='allpage'>
|
||||
<image src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/signin/zhuce1.jpg' class='signin'></image>
|
||||
|
||||
|
||||
|
||||
|
||||
<view class="section">
|
||||
<image class='xuehao-png' src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/xinxi/xuehao.png'></image>
|
||||
<view class='txt'>学号</view>
|
||||
@ -23,16 +19,12 @@
|
||||
</view>
|
||||
</picker>
|
||||
</view>
|
||||
|
||||
<view class='kongbai'></view>
|
||||
|
||||
|
||||
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" disabled='{{disabled}}' bindtap='sumit1' style='opacity: {{opacity}};background-color: #139aec;'>确认录入</button>
|
||||
<button type="warn" disabled='{{disabled}}' bindtap='sumit1' style='opacity: {{opacity}};background-color: #139aec;'>确认录入</button>
|
||||
</view>
|
||||
<view class='kongbai1'></view>
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" bindtap='sumit2' style='background-color: #139aec;'>选择班级</button>
|
||||
<button type="warn" bindtap='sumit2' style='background-color: #139aec;'>选择班级</button>
|
||||
</view>
|
||||
</view>
|
@ -1,13 +1,16 @@
|
||||
/* manage/absent/absent.wxss */
|
||||
.allpage{
|
||||
|
||||
.allpage {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.SRCS{
|
||||
|
||||
.SRCS {
|
||||
height: 350rpx;
|
||||
width: 500rpx;
|
||||
}
|
||||
|
||||
.section {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@ -22,23 +25,28 @@
|
||||
margin-left: 100rpx;
|
||||
width: 410rpx;
|
||||
}
|
||||
.xuehao-png{
|
||||
|
||||
.xuehao-png {
|
||||
height: 30rpx;
|
||||
width: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.txt {
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
.btn-area {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
width: 80%;
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
.kongbai{
|
||||
|
||||
.kongbai {
|
||||
margin-top: 100rpx;
|
||||
}
|
||||
|
||||
.signin {
|
||||
height: 462rpx;
|
||||
width: 750rpx;
|
||||
|
@ -4,12 +4,10 @@
|
||||
<view class="section">
|
||||
<image class='shijian-png' src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/xinxi/shijian.png'></image>
|
||||
<view class='txt'>时间</view>
|
||||
<picker mode="multiSelector" bindchange="bindMultiPickerChange1" value="{{multiIndex}}" range="{{multiArray}}">
|
||||
<picker mode="multiSelector" bindchange="bindMultiPickerChange1" value="{{multiIndex}}" range="{{multiArray}}">
|
||||
<view class="picker">{{multiArray[0][multiIndex[0]]}}_{{multiArray[1][multiIndex[1]]}}_{{multiArray[2][multiIndex[2]]}}</view>
|
||||
</picker>
|
||||
</view>
|
||||
|
||||
|
||||
<view class='item'>
|
||||
<image class='didian-png' src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/xinxi/didian.png'></image>
|
||||
<view class='txt'>地点</view>
|
||||
@ -20,18 +18,14 @@
|
||||
<view class='txt'>教师</view>
|
||||
<input class="input" placeholder="例:吕堂红(离散数学)" bindinput="bindKeyInput2" />
|
||||
</view>
|
||||
|
||||
<view class="section">
|
||||
<view class="section">
|
||||
<image class='png' src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/xinxi/nicheng.png'></image>
|
||||
<view class='txt'>人员</view>
|
||||
<picker mode="multiSelector" bindchange="bindMultiPickerChange2" value="{{renyuanIndex}}" range="{{renyuanArray}}">
|
||||
<picker mode="multiSelector" bindchange="bindMultiPickerChange2" value="{{renyuanIndex}}" range="{{renyuanArray}}">
|
||||
<view class="picker">{{renyuanArray[0][renyuanIndex[0]]}}_{{renyuanArray[1][renyuanIndex[1]]}}</view>
|
||||
</picker>
|
||||
</view>
|
||||
|
||||
|
||||
<view class='kongbai' style='margin-top:70rpx;'></view>
|
||||
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" bindtap='sumit' disabled="{{disabled}}" style='opacity: {{opacity}};background-color: #139aec;'>开始点名</button>
|
||||
</view>
|
||||
|
@ -30,9 +30,10 @@
|
||||
height: 40rpx;
|
||||
width: 30rpx;
|
||||
margin-right: 25rpx;
|
||||
margin-left: 5rpx;
|
||||
margin-left: 5rpx;
|
||||
}
|
||||
.jiaoshi-png{
|
||||
|
||||
.jiaoshi-png {
|
||||
height: 32rpx;
|
||||
width: 48rpx;
|
||||
margin-right: 12rpx;
|
||||
|
@ -1,73 +1,75 @@
|
||||
// manage/rollcall/rollcall.js
|
||||
import { DBPost } from '../../db/DBpost.js';
|
||||
import {
|
||||
DBPost
|
||||
} from '../../db/DBpost.js';
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
onLoad: function(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
onReady: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
|
||||
onShow: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
onHide: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
onUnload: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
onPullDownRefresh: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
onReachBottom: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
onShareAppMessage: function() {
|
||||
|
||||
},
|
||||
scanQRCode: function () {
|
||||
scanQRCode: function() {
|
||||
var that = this;
|
||||
wx.scanCode({
|
||||
success: function (res) {
|
||||
success: function(res) {
|
||||
var dbPost = new DBPost();
|
||||
var res1 = res.result;
|
||||
console.log(res.result);
|
||||
@ -86,8 +88,7 @@ Page({
|
||||
mask: true,
|
||||
icon: "success"
|
||||
})
|
||||
}
|
||||
else if (res1.length != 19) {
|
||||
} else if (res1.length != 19) {
|
||||
wx.showModal({
|
||||
title: "警告",
|
||||
content: "您扫描了错误的二维码!请检查!",
|
||||
@ -96,12 +97,14 @@ Page({
|
||||
})
|
||||
}
|
||||
},
|
||||
fail: function (e) {
|
||||
fail: function(e) {
|
||||
console.log(e);
|
||||
}
|
||||
})
|
||||
},
|
||||
sumit: function () {
|
||||
wx.redirectTo({ url: '../absent/absent' })
|
||||
sumit: function() {
|
||||
wx.redirectTo({
|
||||
url: '../absent/absent'
|
||||
})
|
||||
}
|
||||
})
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"navigationBarBackgroundColor": "#14aeee",
|
||||
"navigationBarTitleText": "正在查课中……"
|
||||
"navigationBarBackgroundColor": "#14aeee",
|
||||
"navigationBarTitleText": "正在查课中……"
|
||||
}
|
@ -2,23 +2,16 @@
|
||||
|
||||
<view class='allpage'>
|
||||
<image src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/signin/zhuce1.jpg' class='signin'></image>
|
||||
|
||||
|
||||
<view class='kongbai'></view>
|
||||
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" bindtap='scanQRCode' style='opacity: {{opacity}};background-color: #139aec;'>立即点名</button>
|
||||
<button type="warn" bindtap='scanQRCode' style='opacity: {{opacity}};background-color: #139aec;'>立即点名</button>
|
||||
</view>
|
||||
|
||||
<view class='kongbai1'></view>
|
||||
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" bindtap='sumit' style='opacity: {{opacity}};background-color: #139aec;'>录入缺勤信息</button>
|
||||
<button type="warn" bindtap='sumit' style='opacity: {{opacity}};background-color: #139aec;'>录入缺勤信息</button>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</view>
|
@ -1,4 +1,5 @@
|
||||
/* manage/rollcall/rollcall.wxss */
|
||||
|
||||
/* welcome/signin/signin.wxss */
|
||||
|
||||
page {
|
||||
@ -16,16 +17,17 @@ page {
|
||||
width: 750rpx;
|
||||
}
|
||||
|
||||
|
||||
.btn-area {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
width: 80%;
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
.kongbai{
|
||||
|
||||
.kongbai {
|
||||
margin-top: 300rpx;
|
||||
}
|
||||
.kongbai1{
|
||||
|
||||
.kongbai1 {
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
}
|
||||
|
@ -224,7 +224,7 @@ Page({
|
||||
case "":
|
||||
{
|
||||
app.globalData.queqin.push(i);
|
||||
this.data.querennum= this.data.querennum + 1
|
||||
this.data.querennum = this.data.querennum + 1
|
||||
console.log(this.data.querennum)
|
||||
}
|
||||
break;
|
||||
@ -622,7 +622,7 @@ Page({
|
||||
case "病假":
|
||||
{
|
||||
app.globalData.bingjia.push(i);
|
||||
this.data.bingjianum= this.data.bingjianum + 1
|
||||
this.data.bingjianum = this.data.bingjianum + 1
|
||||
console.log(this.data.bingjianum)
|
||||
}
|
||||
break;
|
||||
|
@ -13,13 +13,7 @@
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" disabled='{{disabled}}' bindtap='queren' style='opacity: {{opacity}};background-color: #139aec;'>添加班级</button>
|
||||
</view>
|
||||
<view class='kongbai2'></view>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<view class='kongbai2'></view>
|
||||
<view class='btn2'>
|
||||
<view class="btn-area1" id="buttonContainer">
|
||||
<button type="warn" disabled='{{disabled1}}' bindtap='tongji' style='background-color: #11ceec;opacity: {{opacity1}};'>统计结果</button>
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* manage/select/select.wxss */
|
||||
|
||||
/* welcome/signin/signin.wxss */
|
||||
|
||||
page {
|
||||
@ -55,7 +56,8 @@ page {
|
||||
width: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
.xuehao-png{
|
||||
|
||||
.xuehao-png {
|
||||
height: 30rpx;
|
||||
width: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
@ -71,27 +73,32 @@ page {
|
||||
align-items: center;
|
||||
margin-top: 60rpx;
|
||||
}
|
||||
.mima-input{
|
||||
border-bottom-color: #000;
|
||||
|
||||
.mima-input {
|
||||
border-bottom-color: #000;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: thin;
|
||||
margin-left: 30rpx;
|
||||
width: 410rpx;
|
||||
}
|
||||
|
||||
.btn-area {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
width: 80%;
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
.kongbai1{
|
||||
|
||||
.kongbai1 {
|
||||
margin-top: 50rpx;
|
||||
}
|
||||
.kongbai2{
|
||||
|
||||
.kongbai2 {
|
||||
margin-top: 150rpx;
|
||||
}
|
||||
|
||||
/* manage/rollcall/rollcall.wxss */
|
||||
|
||||
/* welcome/signin/signin.wxss */
|
||||
|
||||
page {
|
||||
@ -109,7 +116,6 @@ page {
|
||||
width: 750rpx;
|
||||
}
|
||||
|
||||
|
||||
.btn-area1 {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
@ -117,8 +123,8 @@ page {
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
|
||||
.btn2{
|
||||
.btn2 {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,7 @@
|
||||
// manage/show1/show1.js
|
||||
import { DBPost } from '../../db/DBpost.js';
|
||||
import {
|
||||
DBPost
|
||||
} from '../../db/DBpost.js';
|
||||
var app = getApp();
|
||||
Page({
|
||||
|
||||
@ -16,7 +18,7 @@ Page({
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
onLoad: function(options) {
|
||||
var dbPost = new DBPost();
|
||||
this.setData({
|
||||
xingming: dbPost.getxingmingData(),
|
||||
@ -24,7 +26,7 @@ Page({
|
||||
zhuanye: dbPost.getzhuanyeData(),
|
||||
xueyuan: dbPost.getxueyuanData(),
|
||||
admin: dbPost.getadminData(),
|
||||
loginTime:dbPost.getloginTimeData(),
|
||||
loginTime: dbPost.getloginTimeData(),
|
||||
});
|
||||
this.setData({
|
||||
jiaoshi: dbPost.getjiaoshiData()
|
||||
@ -66,84 +68,84 @@ Page({
|
||||
newbingjia: app.globalData.bingjia.join(' ')
|
||||
})
|
||||
console.log(this.data.jiaoshi, this.data.shijian, this.data.didian, this.data.renyuan1, this.data.renyuan2)
|
||||
console.log('1', this.data.banji1,'2',this.data.banji2,'3',this.data.banji3,'4',this.data.banji4,'5',this.data.banji5)
|
||||
console.log('1', this.data.banji1, '2', this.data.banji2, '3', this.data.banji3, '4', this.data.banji4, '5', this.data.banji5)
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
onReady: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
onShow: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
onHide: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
onUnload: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
onPullDownRefresh: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
onReachBottom: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
onShareAppMessage: function() {
|
||||
|
||||
},
|
||||
post:function(){
|
||||
var that=this;
|
||||
post: function() {
|
||||
var that = this;
|
||||
var dbPost = new DBPost();
|
||||
wx.request({
|
||||
url: 'https://powerrain.cn/rcs/API/shangchuan.php', //仅为示例,并非真实的接口地址
|
||||
data: {
|
||||
time:that.data.shijian,
|
||||
add:that.data.didian,
|
||||
teacher:that.data.jiaoshi,
|
||||
ren1:that.data.renyuan1,
|
||||
ren2:that.data.renyuan2,
|
||||
class1:that.data.banji1,
|
||||
time: that.data.shijian,
|
||||
add: that.data.didian,
|
||||
teacher: that.data.jiaoshi,
|
||||
ren1: that.data.renyuan1,
|
||||
ren2: that.data.renyuan2,
|
||||
class1: that.data.banji1,
|
||||
class2: that.data.banji2,
|
||||
class3: that.data.banji3,
|
||||
class4: that.data.banji4,
|
||||
class5: that.data.banji5,
|
||||
queqin:that.data.newqueqin,
|
||||
bingjia:that.data.newbingjia,
|
||||
shijia:that.data.newshijia
|
||||
queqin: that.data.newqueqin,
|
||||
bingjia: that.data.newbingjia,
|
||||
shijia: that.data.newshijia
|
||||
},
|
||||
header: {
|
||||
'content-type': 'application/json' // 默认值
|
||||
},
|
||||
success: function (res) {
|
||||
app.globalData.queqin="";
|
||||
app.globalData.shijia="";
|
||||
app.globalData.bingjia="";
|
||||
success: function(res) {
|
||||
app.globalData.queqin = "";
|
||||
app.globalData.shijia = "";
|
||||
app.globalData.bingjia = "";
|
||||
app.globalData.banji1 = "";
|
||||
app.globalData.banji2 = "";
|
||||
app.globalData.banji3 = "";
|
||||
@ -157,11 +159,13 @@ Page({
|
||||
dbPost.newxueyuan(that.data.xueyuan);
|
||||
dbPost.newadmin(that.data.admin);
|
||||
dbPost.newloginTime(that.data.loginTime);
|
||||
wx.switchTab({ url: '../../pages/post/post' });
|
||||
wx.switchTab({
|
||||
url: '../../pages/post/post'
|
||||
});
|
||||
console.log(res.data);
|
||||
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
}
|
||||
})
|
@ -48,7 +48,7 @@
|
||||
</block>
|
||||
<view class='btn2'>
|
||||
<view class="btn-area1" id="buttonContainer">
|
||||
<button type="warn" bindtap='post' style='background-color: #11ceec;'>保存并退出</button>
|
||||
<button type="warn" bindtap='post' style='background-color: #11ceec;'>保存并退出</button>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
@ -1,7 +1,5 @@
|
||||
/* manage/show/show.wxss */
|
||||
|
||||
|
||||
|
||||
.detail-item {
|
||||
display: flex;
|
||||
margin-left: 30rpx;
|
||||
@ -69,6 +67,7 @@
|
||||
margin-bottom: 20rpx;
|
||||
border-bottom: 3rpx dashed #d9d9d9;
|
||||
}
|
||||
|
||||
.btn-area1 {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
@ -77,8 +76,8 @@
|
||||
margin-bottom: 50rpx;
|
||||
}
|
||||
|
||||
.btn2{
|
||||
.btn2 {
|
||||
display: flex;
|
||||
flex-direction:column;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
@ -11,14 +11,13 @@
|
||||
<view class="cen">
|
||||
<view class="w">
|
||||
<view class="title">
|
||||
<view>请输入反馈*</view>
|
||||
<view class="{{feedBack_error?'showError':'showNormal'}}">请输入内容</view>
|
||||
<view>请输入反馈*</view>
|
||||
<view class="{{feedBack_error?'showError':'showNormal'}}">请输入内容</view>
|
||||
</view>
|
||||
|
||||
<textarea class="item" placeholder="{{placeholder}}" bindinput="fankui" maxlength="300"></textarea>
|
||||
<view class="title">
|
||||
<view>联系方式(选填)</view>
|
||||
<view class="{{qqNum_error?'showError':'showNormal'}}">请输入正确的qq号</view>
|
||||
<view>联系方式(选填)</view>
|
||||
<view class="{{qqNum_error?'showError':'showNormal'}}">请输入正确的qq号</view>
|
||||
</view>
|
||||
<input class="item_2" placeholder='请填写您的QQ号码,以便我们向您反馈处理结果' type='number' bindinput='qqNum'>
|
||||
</input>
|
||||
|
@ -1,5 +1,7 @@
|
||||
// pages/main/index.js
|
||||
import { DBPost } from '../../../db/DBpost.js';
|
||||
import {
|
||||
DBPost
|
||||
} from '../../../db/DBpost.js';
|
||||
var app = getApp();
|
||||
var QR = require("../../../data/QRcode.js");
|
||||
Page({
|
||||
@ -7,18 +9,18 @@ Page({
|
||||
canvasHidden: false,
|
||||
maskHidden: true,
|
||||
imagePath: '',
|
||||
placeholder: '1525873266' //默认二维码生成文本
|
||||
placeholder: '1525873266' //默认二维码生成文本
|
||||
},
|
||||
onLoad: function (options) {
|
||||
onLoad: function(options) {
|
||||
// 页面初始化 options为页面跳转所带来的参数
|
||||
var dbPost = new DBPost();
|
||||
var xuehao1 = dbPost.getxuehaoData();
|
||||
var shijianchuo1 = xuehao1+dbPost.getshijianchuoData();
|
||||
var shijianchuo1 = xuehao1 + dbPost.getshijianchuoData();
|
||||
this.setData({
|
||||
placeholder: shijianchuo1.toString() //数字转字符串
|
||||
});
|
||||
console.log(this.data.placeholder)
|
||||
var size = this.setCanvasSize();//动态设置画布大小
|
||||
var size = this.setCanvasSize(); //动态设置画布大小
|
||||
var initUrl = this.data.placeholder;
|
||||
this.createQrCode(initUrl, "mycanvas", size.w, size.h);
|
||||
wx.setScreenBrightness({
|
||||
@ -26,28 +28,27 @@ Page({
|
||||
})
|
||||
|
||||
},
|
||||
onReady: function () {
|
||||
},
|
||||
onShow: function () {
|
||||
onReady: function() {},
|
||||
onShow: function() {
|
||||
|
||||
// 页面显示
|
||||
},
|
||||
onHide: function () {
|
||||
onHide: function() {
|
||||
// 页面隐藏
|
||||
},
|
||||
|
||||
onUnload: function () {
|
||||
onUnload: function() {
|
||||
// 页面关闭
|
||||
|
||||
},
|
||||
//适配不同屏幕大小的canvas
|
||||
setCanvasSize: function () {
|
||||
setCanvasSize: function() {
|
||||
var size = {};
|
||||
try {
|
||||
var res = wx.getSystemInfoSync();
|
||||
var scale = 750 / 686;//不同屏幕下canvas的适配比例;设计稿是750宽
|
||||
var scale = 750 / 686; //不同屏幕下canvas的适配比例;设计稿是750宽
|
||||
var width = res.windowWidth / scale;
|
||||
var height = width;//canvas画布为正方形
|
||||
var height = width; //canvas画布为正方形
|
||||
size.w = width;
|
||||
size.h = height;
|
||||
} catch (e) {
|
||||
@ -56,18 +57,20 @@ Page({
|
||||
}
|
||||
return size;
|
||||
},
|
||||
createQrCode: function (url, canvasId, cavW, cavH) {
|
||||
createQrCode: function(url, canvasId, cavW, cavH) {
|
||||
//调用插件中的draw方法,绘制二维码图片
|
||||
QR.api.draw(url, canvasId, cavW, cavH);
|
||||
setTimeout(() => { this.canvasToTempImage(); }, 1000);
|
||||
setTimeout(() => {
|
||||
this.canvasToTempImage();
|
||||
}, 1000);
|
||||
|
||||
},
|
||||
//获取临时缓存照片路径,存入data中
|
||||
canvasToTempImage: function () {
|
||||
canvasToTempImage: function() {
|
||||
var that = this;
|
||||
wx.canvasToTempFilePath({
|
||||
canvasId: 'mycanvas',
|
||||
success: function (res) {
|
||||
success: function(res) {
|
||||
var tempFilePath = res.tempFilePath;
|
||||
console.log(tempFilePath);
|
||||
that.setData({
|
||||
@ -75,13 +78,13 @@ Page({
|
||||
// canvasHidden:true
|
||||
});
|
||||
},
|
||||
fail: function (res) {
|
||||
fail: function(res) {
|
||||
console.log(res);
|
||||
}
|
||||
});
|
||||
},
|
||||
//点击图片进行预览,长按保存分享图片
|
||||
previewImg: function (e) {
|
||||
previewImg: function(e) {
|
||||
var img = this.data.imagePath;
|
||||
console.log(img);
|
||||
wx.previewImage({
|
||||
@ -89,7 +92,7 @@ Page({
|
||||
urls: [img] // 需要预览的图片http链接列表
|
||||
})
|
||||
},
|
||||
formSubmit: function (e) {
|
||||
formSubmit: function(e) {
|
||||
var that = this;
|
||||
var url = e.detail.value.url;
|
||||
that.setData({
|
||||
@ -100,7 +103,7 @@ Page({
|
||||
icon: 'loading',
|
||||
duration: 2000
|
||||
});
|
||||
var st = setTimeout(function () {
|
||||
var st = setTimeout(function() {
|
||||
wx.hideToast()
|
||||
var size = that.setCanvasSize();
|
||||
//绘制二维码
|
||||
@ -112,7 +115,9 @@ Page({
|
||||
}, 2000)
|
||||
|
||||
},
|
||||
sumit: function () {
|
||||
wx.switchTab({ url: '../post' })
|
||||
sumit: function() {
|
||||
wx.switchTab({
|
||||
url: '../post'
|
||||
})
|
||||
}
|
||||
})
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"navigationBarBackgroundColor": "#0061bf",
|
||||
"navigationBarBackgroundColor": "#0061bf",
|
||||
"navigationBarTitleText": "正在签到"
|
||||
}
|
@ -9,7 +9,6 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view hidden="{{maskHidden}}" class="mask"></view>
|
||||
<view class="canvas-box">
|
||||
<canvas hidden="{{canvasHidden}}" style="width: 686rpx;height: 686rpx;background:#f1f1f1;" canvas-id="mycanvas" />
|
||||
|
@ -1,41 +1,82 @@
|
||||
/* pages/main/index.wxss */
|
||||
.container-box{background-color: #efeff4;height: 100vh}
|
||||
.img-box{padding: 32rpx;background-color: #fff;border-bottom: 1rpx solid #e5e5e5;position: relative}
|
||||
.img-box image{width: 686rpx;height: 686rpx;background-color: #f9f9f9}
|
||||
.input-row{
|
||||
margin: 30rpx auto;
|
||||
border-bottom: 1rpx solid #e5e5e5;
|
||||
border-top: 1rpx solid #e5e5e5;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 88rpx;
|
||||
padding: 0 32rpx;
|
||||
background-color: #fff;
|
||||
font-size: 34rpx;
|
||||
color: #000
|
||||
|
||||
.container-box {
|
||||
background-color: #efeff4;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.img-box {
|
||||
padding: 32rpx;
|
||||
background-color: #fff;
|
||||
border-bottom: 1rpx solid #e5e5e5;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.img-box image {
|
||||
width: 686rpx;
|
||||
height: 686rpx;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
.input-row {
|
||||
margin: 30rpx auto;
|
||||
border-bottom: 1rpx solid #e5e5e5;
|
||||
border-top: 1rpx solid #e5e5e5;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 88rpx;
|
||||
padding: 0 32rpx;
|
||||
background-color: #fff;
|
||||
font-size: 34rpx;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.input-row input {
|
||||
margin-left: 100rpx;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.mybtn {
|
||||
width: 686rpx;
|
||||
margin: 60rpx auto;
|
||||
}
|
||||
|
||||
.mask {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 3;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.canvas-box {
|
||||
position: fixed;
|
||||
top: 999999rpx;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.input-row input{margin-left: 100rpx;flex: 1}
|
||||
.mybtn{width:686rpx;margin: 60rpx auto }
|
||||
.mask{position: fixed;top: 0;left: 0;z-index: 3; width: 100%;height: 100%;opacity: 0;}
|
||||
.canvas-box{position: fixed;top:999999rpx;left: 0}
|
||||
.btn-area {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
width: 80%;
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
.kongbai{
|
||||
|
||||
.kongbai {
|
||||
margin-top: 100rpx;
|
||||
}
|
||||
.btn{
|
||||
|
||||
.btn {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.btn-area {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
width: 80%;
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
}
|
||||
|
@ -18,10 +18,10 @@ Page({
|
||||
*/
|
||||
onLoad: function(options) {
|
||||
var dbPost = new DBPost();
|
||||
this.data.admin= dbPost.getadminData(),
|
||||
wx.setScreenBrightness({
|
||||
value: 0.5
|
||||
})
|
||||
this.data.admin = dbPost.getadminData(),
|
||||
wx.setScreenBrightness({
|
||||
value: 0.5
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
@ -73,12 +73,12 @@ Page({
|
||||
|
||||
},
|
||||
sumit: function() {
|
||||
|
||||
var timestamp = + new Date();
|
||||
|
||||
var timestamp = +new Date();
|
||||
timestamp = timestamp / 1000;
|
||||
timestamp =parseInt(timestamp);
|
||||
timestamp = parseInt(timestamp);
|
||||
console.log("当前时间戳为:" + timestamp);
|
||||
this.data.newshijianchuo= timestamp;
|
||||
this.data.newshijianchuo = timestamp;
|
||||
var dbPost = new DBPost();
|
||||
dbPost.newshijianchuo(this.data.newshijianchuo);
|
||||
wx.navigateTo({
|
||||
@ -93,7 +93,7 @@ Page({
|
||||
title: '确认',
|
||||
content: '是否开始点名',
|
||||
confirmColor: '#10aeff',
|
||||
success: function (res) {
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
wx.redirectTo({
|
||||
url: '../../manage/manage'
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
"navigationBarBackgroundColor": "#003b97"
|
||||
"navigationBarBackgroundColor": "#003b97"
|
||||
}
|
@ -7,7 +7,7 @@
|
||||
.postImgXH {
|
||||
width: 200rpx;
|
||||
height: 200rpx;
|
||||
margin-bottom:30rpx;
|
||||
margin-bottom: 30rpx;
|
||||
}
|
||||
|
||||
.postImgCLT {
|
||||
@ -41,34 +41,34 @@
|
||||
page {
|
||||
background-image: url(http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/background.png);
|
||||
background-repeat: no-repeat;
|
||||
background-size:100% 100%;
|
||||
border:none;
|
||||
background-color: #003b97;
|
||||
background-size: 100% 100%;
|
||||
border: none;
|
||||
background-color: #003b97;
|
||||
}
|
||||
|
||||
.box_1 {
|
||||
height:100rpx;
|
||||
width:300rpx;
|
||||
background:rgba(43, 107, 243, 0.4);
|
||||
border-radius:10rpx;
|
||||
height: 100rpx;
|
||||
width: 300rpx;
|
||||
background: rgba(43, 107, 243, 0.4);
|
||||
border-radius: 10rpx;
|
||||
box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.301);
|
||||
margin-top:200rpx;
|
||||
margin-top: 200rpx;
|
||||
text-align: center;
|
||||
line-height: 100rpx;
|
||||
font-size: 30rpx;
|
||||
color: #fff;
|
||||
letter-spacing:2px;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
.box_1:active{
|
||||
height:100rpx;
|
||||
width:320rpx;
|
||||
background:rgba(43, 106, 243, 0.6);
|
||||
.box_1:active {
|
||||
height: 100rpx;
|
||||
width: 320rpx;
|
||||
background: rgba(43, 106, 243, 0.6);
|
||||
box-shadow: 0px 0px 0px rgba(255, 255, 255, 0.301);
|
||||
border-radius:10rpx;
|
||||
margin-top:210rpx;
|
||||
border-radius: 10rpx;
|
||||
margin-top: 210rpx;
|
||||
text-align: center;
|
||||
line-height: 100rpx;
|
||||
font-size: 30rpx;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
@ -5,62 +5,62 @@ Page({
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
onLoad: function(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
onReady: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
|
||||
onShow: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
onHide: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
onUnload: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
onPullDownRefresh: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
onReachBottom: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
onShareAppMessage: function() {
|
||||
|
||||
}
|
||||
})
|
@ -13,8 +13,8 @@
|
||||
</view>
|
||||
<view class='kongbai'></view>
|
||||
<view class='banquan'>
|
||||
<view class='BT'>Designed by Rain Sun</view>
|
||||
<view class='BT'>计算机科学技术学院 团委学生会学习部</view>
|
||||
<view class='BT'>All Rights Reserved</view>
|
||||
<view class='BT'>Designed by Rain Sun</view>
|
||||
<view class='BT'>计算机科学技术学院 团委学生会学习部</view>
|
||||
<view class='BT'>All Rights Reserved</view>
|
||||
</view>
|
||||
</view>
|
@ -83,7 +83,6 @@
|
||||
color: #7f8389;
|
||||
font-size: 20rpx;
|
||||
flex: 1;
|
||||
|
||||
}
|
||||
|
||||
.banquan {
|
||||
|
@ -1,82 +1,82 @@
|
||||
// pages/user/user.js
|
||||
var app = getApp();
|
||||
import { DBPost } from '../../db/DBpost.js';
|
||||
import {
|
||||
DBPost
|
||||
} from '../../db/DBpost.js';
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
},
|
||||
data: {},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
onLoad: function(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
onReady: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
},
|
||||
onShow: function() {},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
onHide: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
onUnload: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
onPullDownRefresh: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
onReachBottom: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
onShareAppMessage: function() {
|
||||
|
||||
},
|
||||
xinxi:function(event){
|
||||
xinxi: function(event) {
|
||||
wx.navigateTo({
|
||||
url: 'xinxi/xinxi',
|
||||
})
|
||||
},
|
||||
guanyu: function (event) {
|
||||
guanyu: function(event) {
|
||||
wx.navigateTo({
|
||||
url: 'guanyu/guanyu',
|
||||
})
|
||||
},
|
||||
fankui: function (event) {
|
||||
fankui: function(event) {
|
||||
wx.navigateTo({
|
||||
url: '../feedBack/feedBack',
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
})
|
@ -8,7 +8,7 @@
|
||||
<view>{{userInfo.country}}</view>-->
|
||||
<view class='allPage'>
|
||||
<view class='PNQ'>
|
||||
<open-data class='UP' type="userAvatarUrl"></open-data>
|
||||
<open-data class='UP' type="userAvatarUrl"></open-data>
|
||||
<view class='NQ'>
|
||||
<open-data class='UN' type="userNickName"></open-data>
|
||||
<view class='UQ'>校训: 明德博学,求是创新</view>
|
||||
@ -20,7 +20,8 @@
|
||||
<image src="http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/user/xinxi.png"></image>
|
||||
<text>账号信息</text>
|
||||
<view class="detail-item-btn"></view>
|
||||
</view><view class="detail-item" catchtap="fankui">
|
||||
</view>
|
||||
<view class="detail-item" catchtap="fankui">
|
||||
<image src="http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/user/fankui.png"></image>
|
||||
<text>反馈中心</text>
|
||||
<view class="detail-item-btn"></view>
|
||||
|
@ -9,7 +9,7 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
background-color: #003b97;
|
||||
background-color: #003b97;
|
||||
}
|
||||
|
||||
.UP {
|
||||
@ -17,7 +17,7 @@
|
||||
width: 150rpx;
|
||||
border-radius: 50%;
|
||||
margin: 30rpx;
|
||||
overflow:hidden;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.NQ {
|
||||
@ -30,7 +30,6 @@
|
||||
font-weight: bold;
|
||||
font-size: 130%;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
}
|
||||
|
||||
.UQ {
|
||||
@ -38,56 +37,60 @@
|
||||
font-size: small;
|
||||
font-weight: 200;
|
||||
}
|
||||
page{
|
||||
|
||||
page {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.category-item {
|
||||
width: 100%;
|
||||
margin: 20rpx 0;
|
||||
border-top: 1rpx solid #d9d9d9;
|
||||
border-bottom: 1rpx solid #d9d9d9;
|
||||
background-color: #fff;
|
||||
width: 100%;
|
||||
margin: 20rpx 0;
|
||||
border-top: 1rpx solid #d9d9d9;
|
||||
border-bottom: 1rpx solid #d9d9d9;
|
||||
background-color: #fff;
|
||||
}
|
||||
.detail-item{
|
||||
display: flex;
|
||||
margin-left: 30rpx;
|
||||
border-bottom: 1px solid RGBA(217, 217, 217, .4);
|
||||
height:85rpx;
|
||||
align-items: center;
|
||||
}
|
||||
.detail-item:last-child{
|
||||
border-bottom:none;
|
||||
}
|
||||
.detail-item image{
|
||||
height: 40rpx;
|
||||
width:40rpx;
|
||||
|
||||
.detail-item {
|
||||
display: flex;
|
||||
margin-left: 30rpx;
|
||||
border-bottom: 1px solid RGBA(217, 217, 217, 0.4);
|
||||
height: 85rpx;
|
||||
align-items: center;
|
||||
}
|
||||
.detail-item text{
|
||||
color:#7F8389;
|
||||
font-size:24rpx;
|
||||
flex:1;
|
||||
margin-left: 30rpx;
|
||||
|
||||
.detail-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.detail-item .detail-item-btn{
|
||||
width: 50rpx;
|
||||
color: #d9d9d9;
|
||||
height: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
text-align: center;
|
||||
|
||||
.detail-item image {
|
||||
height: 40rpx;
|
||||
width: 40rpx;
|
||||
}
|
||||
|
||||
.detail-item text {
|
||||
color: #7f8389;
|
||||
font-size: 24rpx;
|
||||
flex: 1;
|
||||
margin-left: 30rpx;
|
||||
}
|
||||
|
||||
.detail-item .detail-item-btn {
|
||||
width: 50rpx;
|
||||
color: #d9d9d9;
|
||||
height: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.detail-item .detail-item-btn::after {
|
||||
display: inline-block;
|
||||
content: '';
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
color: #d9d9d9;
|
||||
margin-top: 8rpx;
|
||||
border: 3rpx #d9d9d9 solid;
|
||||
border-top-color: transparent;
|
||||
border-left-color: transparent;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
.detail-item .detail-item-btn::after{
|
||||
display: inline-block;
|
||||
content:'';
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
color: #d9d9d9;
|
||||
margin-top: 8rpx;
|
||||
border:3rpx #d9d9d9 solid;
|
||||
border-top-color:transparent;
|
||||
border-left-color:transparent;
|
||||
transform: rotate(-45deg);
|
||||
}
|
@ -1,6 +1,8 @@
|
||||
// pages/user/xinxi/xinxi.js
|
||||
var app = getApp();
|
||||
import { DBPost } from '../../../db/DBpost.js';
|
||||
import {
|
||||
DBPost
|
||||
} from '../../../db/DBpost.js';
|
||||
Page({
|
||||
|
||||
/**
|
||||
@ -13,76 +15,76 @@ Page({
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function (options) {
|
||||
|
||||
onLoad: function(options) {
|
||||
|
||||
var dbPost = new DBPost();
|
||||
this.setData({
|
||||
xingming:dbPost.getxingmingData(),
|
||||
xuehao:dbPost.getxuehaoData(),
|
||||
zhuanye:dbPost.getzhuanyeData(),
|
||||
xueyuan:dbPost.getxueyuanData(),
|
||||
xingming: dbPost.getxingmingData(),
|
||||
xuehao: dbPost.getxuehaoData(),
|
||||
zhuanye: dbPost.getzhuanyeData(),
|
||||
xueyuan: dbPost.getxueyuanData(),
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady: function () {
|
||||
|
||||
onReady: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow: function () {
|
||||
onShow: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide: function () {
|
||||
|
||||
onHide: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload: function () {
|
||||
|
||||
onUnload: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh: function () {
|
||||
|
||||
onPullDownRefresh: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom: function () {
|
||||
|
||||
onReachBottom: function() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage: function () {
|
||||
|
||||
onShareAppMessage: function() {
|
||||
|
||||
},
|
||||
bangDingError(){
|
||||
bangDingError() {
|
||||
wx.showModal({
|
||||
title: '联系客服',
|
||||
content: 'QQ:1144131090',
|
||||
confirmText: '复制',
|
||||
confirmColor: '#003b97',
|
||||
success: function (res) {
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
wx.setClipboardData({
|
||||
data: '1144131090',
|
||||
success: function (res) {
|
||||
success: function(res) {
|
||||
wx.showToast({
|
||||
title: '复制成功',
|
||||
icon: 'success'
|
||||
|
@ -29,6 +29,6 @@
|
||||
<text>校训:明德博学,求是创新</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class='foot' bindtap='bangDingError'>绑定错误?快速戳我!</view>
|
||||
|
||||
<view class='foot' bindtap='bangDingError'>绑定错误?快速戳我!</view>
|
||||
</view>
|
@ -1,4 +1,5 @@
|
||||
/* pages/user/xinxi/xinxi.wxss */
|
||||
|
||||
/* pages/user/user.wxss */
|
||||
|
||||
.allPage {
|
||||
@ -10,7 +11,7 @@
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
background-color: #003b97;
|
||||
background-color: #003b97;
|
||||
}
|
||||
|
||||
.UP {
|
||||
@ -18,7 +19,7 @@
|
||||
width: 150rpx;
|
||||
border-radius: 50%;
|
||||
margin: 30rpx;
|
||||
overflow:hidden;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.NQ {
|
||||
@ -32,67 +33,71 @@
|
||||
font-size: 130%;
|
||||
}
|
||||
|
||||
|
||||
page{
|
||||
page {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.category-item {
|
||||
width: 100%;
|
||||
margin: 20rpx 0;
|
||||
border-top: 1rpx solid #d9d9d9;
|
||||
border-bottom: 1rpx solid #d9d9d9;
|
||||
background-color: #fff;
|
||||
width: 100%;
|
||||
margin: 20rpx 0;
|
||||
border-top: 1rpx solid #d9d9d9;
|
||||
border-bottom: 1rpx solid #d9d9d9;
|
||||
background-color: #fff;
|
||||
}
|
||||
.detail-item{
|
||||
display: flex;
|
||||
margin-left: 30rpx;
|
||||
border-bottom: 1px solid RGBA(217, 217, 217, .4);
|
||||
height:85rpx;
|
||||
align-items: center;
|
||||
}
|
||||
.detail-item:last-child{
|
||||
border-bottom:none;
|
||||
}
|
||||
.detail-item image{
|
||||
height: 40rpx;
|
||||
width:40rpx;
|
||||
|
||||
.detail-item {
|
||||
display: flex;
|
||||
margin-left: 30rpx;
|
||||
border-bottom: 1px solid RGBA(217, 217, 217, 0.4);
|
||||
height: 85rpx;
|
||||
align-items: center;
|
||||
}
|
||||
.detail-item text{
|
||||
color:#7F8389;
|
||||
font-size:24rpx;
|
||||
flex:1;
|
||||
margin-left: 30rpx;
|
||||
|
||||
.detail-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.detail-item .detail-item-btn{
|
||||
width: 50rpx;
|
||||
color: #d9d9d9;
|
||||
height: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
text-align: center;
|
||||
|
||||
.detail-item image {
|
||||
height: 40rpx;
|
||||
width: 40rpx;
|
||||
}
|
||||
.detail-item .detail-item-btn::after{
|
||||
display: inline-block;
|
||||
content:'';
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
color: #d9d9d9;
|
||||
margin-top: 8rpx;
|
||||
border:3rpx #d9d9d9 solid;
|
||||
border-top-color:transparent;
|
||||
border-left-color:transparent;
|
||||
transform: rotate(-45deg);
|
||||
|
||||
.detail-item text {
|
||||
color: #7f8389;
|
||||
font-size: 24rpx;
|
||||
flex: 1;
|
||||
margin-left: 30rpx;
|
||||
}
|
||||
.btn-area{
|
||||
|
||||
.detail-item .detail-item-btn {
|
||||
width: 50rpx;
|
||||
color: #d9d9d9;
|
||||
height: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.detail-item .detail-item-btn::after {
|
||||
display: inline-block;
|
||||
content: '';
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
color: #d9d9d9;
|
||||
margin-top: 8rpx;
|
||||
border: 3rpx #d9d9d9 solid;
|
||||
border-top-color: transparent;
|
||||
border-left-color: transparent;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
.btn-area {
|
||||
margin-top: 60rpx;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
.kongbai{
|
||||
|
||||
.kongbai {
|
||||
margin-bottom: 200rpx;
|
||||
}
|
||||
|
||||
@ -103,6 +108,6 @@ page{
|
||||
height: 50rpx;
|
||||
line-height: 50rpx;
|
||||
position: fixed;
|
||||
bottom: 15px;
|
||||
width:100%;
|
||||
}
|
||||
bottom: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ Page({
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad: function(options) {
|
||||
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
@ -96,7 +96,7 @@ Page({
|
||||
dbPost.newadmin(result.data.admin);
|
||||
that.data.xuehao = result.data.xueHao;
|
||||
console.log(that.data.xuehao);
|
||||
var timestamp = + new Date();
|
||||
var timestamp = +new Date();
|
||||
timestamp = timestamp / 1000;
|
||||
timestamp = parseInt(timestamp);
|
||||
dbPost.newloginTime(timestamp);
|
||||
@ -151,7 +151,7 @@ Page({
|
||||
})
|
||||
}
|
||||
},
|
||||
fail: function () {
|
||||
fail: function() {
|
||||
wx.hideLoading();
|
||||
wx.showToast({
|
||||
title: "登录失败",
|
||||
|
@ -3,10 +3,10 @@
|
||||
<image src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/login/denglu1.jpg' class='SRCS'></image>
|
||||
<view class='btn2'>
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" bindtap='denglu' style='background-color: #11ceec;'>登录</button>
|
||||
<button type="warn" bindtap='denglu' style='background-color: #11ceec;'>登录</button>
|
||||
</view>
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" bindtap='zhuce' style='background-color: #139aec;'>注册</button>
|
||||
<button type="warn" bindtap='zhuce' style='background-color: #139aec;'>注册</button>
|
||||
</view>
|
||||
</view>
|
||||
<view class='txt'>Design by RainSun</view>
|
||||
|
@ -11,12 +11,10 @@ page {
|
||||
}
|
||||
|
||||
.SRCS {
|
||||
|
||||
height: 900rpx;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.btn-area {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
@ -24,19 +22,20 @@ page {
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
|
||||
.btn2{
|
||||
.btn2 {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.txt {
|
||||
margin-top: 100rpx;
|
||||
color: #7f8389;
|
||||
font-size: 15rpx;
|
||||
flex: 1;
|
||||
}
|
||||
.txt1 {
|
||||
|
||||
.txt1 {
|
||||
color: #7f8389;
|
||||
font-size: 15rpx;
|
||||
flex: 1;
|
||||
|
@ -122,18 +122,18 @@ Page({
|
||||
};
|
||||
|
||||
data.multiIndex[e.detail.column] = e.detail.value;
|
||||
switch (e.detail.column) {//选择改变的列
|
||||
switch (e.detail.column) { //选择改变的列
|
||||
case 0:
|
||||
switch (data.multiIndex[0]) { //判断第一列目前的值
|
||||
case 0://1705
|
||||
case 0: //1705
|
||||
data.multiArray[1] = ['111', '112', '113', '114', '115', '116', '117', '121', '122', '211', '212', '213', '221', '222']; //1.2
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30']; //1.2.1
|
||||
break;
|
||||
case 1://1805
|
||||
case 1: //1805
|
||||
data.multiArray[1] = ['112', '113', '114', '115', '116', '117', '121', '122', '123', '211', '212', '213', '214', '221', '222']; //1.2
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39']; //1.2.1
|
||||
break;
|
||||
case 2://其他学院
|
||||
case 2: //其他学院
|
||||
data.multiArray[1] = ['暂缓开通']; //2.2
|
||||
data.multiArray[2] = ['暂缓开通']; //2.2.1
|
||||
break;
|
||||
@ -144,7 +144,7 @@ Page({
|
||||
case 1:
|
||||
switch (data.multiIndex[0]) {
|
||||
case 0:
|
||||
switch (data.multiIndex[1]) {//选择班级
|
||||
switch (data.multiIndex[1]) { //选择班级
|
||||
case 0:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38'];
|
||||
break;
|
||||
@ -194,51 +194,51 @@ Page({
|
||||
break;
|
||||
|
||||
case 1:
|
||||
switch (data.multiIndex[1]) {//选择班级
|
||||
switch (data.multiIndex[1]) { //选择班级
|
||||
case 0:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38','39']; //1805112
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39']; //1805112
|
||||
break;
|
||||
case 1:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38','39','40'];//1805113
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40']; //1805113
|
||||
break;
|
||||
case 2:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40','41'];//1805114
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40', '41']; //1805114
|
||||
break;
|
||||
case 3:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39'];//1805115
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39']; //1805115
|
||||
break;
|
||||
case 4:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39'];//1805116
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39']; //1805116
|
||||
break;
|
||||
case 5:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39'];//1805117
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39']; //1805117
|
||||
break;
|
||||
case 6:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37'];//1805121
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37']; //1805121
|
||||
break;
|
||||
case 7:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37'];//1805122
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37']; //1805122
|
||||
break;
|
||||
case 8:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36'];//1805123
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36']; //1805123
|
||||
break;
|
||||
case 9:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36','37'];//1805211
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37']; //1805211
|
||||
break;
|
||||
case 10:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36','37'];//1805212
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37']; //1805212
|
||||
break;
|
||||
case 11:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36'];//1805213
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36']; //1805213
|
||||
break;
|
||||
case 12:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36'];//1805214
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36']; //1805214
|
||||
break;
|
||||
case 13:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37','38'];//1805221
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38']; //1805221
|
||||
break;
|
||||
case 14:
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37'];//1805222
|
||||
data.multiArray[2] = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37']; //1805222
|
||||
break;
|
||||
|
||||
}
|
||||
@ -328,7 +328,7 @@ Page({
|
||||
dbPost.newadmin(result.data.admin);
|
||||
that.data.xuehao = result.data.xueHao;
|
||||
console.log(that.data.xuehao);
|
||||
if(that.data.xuehao){
|
||||
if (that.data.xuehao) {
|
||||
wx.switchTab({
|
||||
url: '../../pages/post/post'
|
||||
})
|
||||
@ -337,15 +337,15 @@ Page({
|
||||
icon: 'success',
|
||||
duration: 2000
|
||||
})
|
||||
}else{
|
||||
} else {
|
||||
wx.showToast({
|
||||
title: "注册失败,请重试",
|
||||
icon: "none"
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
fail:function(){
|
||||
fail: function() {
|
||||
wx.showToast({
|
||||
title: "网络不畅,注册失败",
|
||||
icon: "none"
|
||||
@ -484,11 +484,11 @@ Page({
|
||||
content: 'QQ:1144131090',
|
||||
confirmText: '复制',
|
||||
confirmColor: '#10aeff',
|
||||
success: function (res) {
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
wx.setClipboardData({
|
||||
data: '1144131090',
|
||||
success: function (res) {
|
||||
success: function(res) {
|
||||
wx.showToast({
|
||||
title: '复制成功',
|
||||
icon: 'success'
|
||||
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"navigationBarBackgroundColor": "#10aeff",
|
||||
"navigationBarTitleText": "欢迎加入RCS大家庭"
|
||||
"navigationBarTitleText": "欢迎加入RCS大家庭"
|
||||
}
|
@ -1,7 +1,6 @@
|
||||
<!--welcome/signin/signin.wxml-->
|
||||
<view class='allpage'>
|
||||
<image src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/signin/zhuce1.jpg' class='signin'></image>
|
||||
|
||||
<view class="section">
|
||||
<image class='xuehao-png' src='http://supcache.wanyuanyin.cn/data/maoye.club/yingbo/rcs/images/xinxi/xuehao.png'></image>
|
||||
<view class='txt'>学号</view>
|
||||
@ -10,10 +9,7 @@
|
||||
</picker>
|
||||
<button bindtap='yanzheng' class="minibtn" type="primary" disabled='{{disabled1}}' style='border-radius: 30px;background-color: #10aeff;' size="mini">验证</button>
|
||||
</view>
|
||||
|
||||
|
||||
<view class='kongbai'></view>
|
||||
|
||||
<view class="btn-area" id="buttonContainer">
|
||||
<button type="warn" bindtap='sumit' disabled="{{disabled}}" style='opacity: {{opacity}};background-color: #10aeff;'>完成注册</button>
|
||||
</view>
|
||||
|
@ -54,7 +54,8 @@ page {
|
||||
width: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
.xuehao-png{
|
||||
|
||||
.xuehao-png {
|
||||
height: 30rpx;
|
||||
width: 40rpx;
|
||||
margin-right: 20rpx;
|
||||
@ -70,22 +71,26 @@ page {
|
||||
align-items: center;
|
||||
margin-top: 60rpx;
|
||||
}
|
||||
.mima-input{
|
||||
border-bottom-color: #000;
|
||||
|
||||
.mima-input {
|
||||
border-bottom-color: #000;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: thin;
|
||||
margin-left: 30rpx;
|
||||
width: 410rpx;
|
||||
}
|
||||
|
||||
.btn-area {
|
||||
margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
width: 80%;
|
||||
padding: 0 30rpx;
|
||||
}
|
||||
.kongbai{
|
||||
|
||||
.kongbai {
|
||||
margin-top: 170rpx;
|
||||
}
|
||||
|
||||
.foot {
|
||||
font-size: 25rpx;
|
||||
color: #10aeff;
|
||||
@ -93,6 +98,6 @@ page {
|
||||
height: 50rpx;
|
||||
line-height: 50rpx;
|
||||
position: fixed;
|
||||
bottom: 15px;
|
||||
width:100%;
|
||||
}
|
||||
bottom: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user