parent
b8e883512a
commit
33ac386139
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Eslint config file
|
||||
* Documentation: https://eslint.org/docs/user-guide/configuring/
|
||||
* Install the Eslint extension before using this feature.
|
||||
*/
|
||||
module.exports = {
|
||||
env: {
|
||||
es6: true,
|
||||
browser: true,
|
||||
node: true,
|
||||
},
|
||||
ecmaFeatures: {
|
||||
modules: true,
|
||||
},
|
||||
parserOptions: {
|
||||
ecmaVersion: 2018,
|
||||
sourceType: 'module',
|
||||
},
|
||||
globals: {
|
||||
wx: true,
|
||||
App: true,
|
||||
Page: true,
|
||||
getCurrentPages: true,
|
||||
getApp: true,
|
||||
Component: true,
|
||||
requirePlugin: true,
|
||||
requireMiniProgram: true,
|
||||
},
|
||||
// extends: 'eslint:recommended',
|
||||
rules: {},
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
# 云开发 quickstart
|
||||
|
||||
这是云开发的快速启动指引,其中演示了如何上手使用云开发的三大基础能力:
|
||||
|
||||
- 数据库:一个既可在小程序前端操作,也能在云函数中读写的 JSON 文档型数据库
|
||||
- 文件存储:在小程序前端直接上传/下载云端文件,在云开发控制台可视化管理
|
||||
- 云函数:在云端运行的代码,微信私有协议天然鉴权,开发者只需编写业务逻辑代码
|
||||
|
||||
## 参考文档
|
||||
|
||||
- [云开发文档](https://developers.weixin.qq.com/miniprogram/dev/wxcloud/basis/getting-started.html)
|
||||
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"permissions": {
|
||||
"openapi": [
|
||||
]
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "useroption",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"wx-server-sdk": "~2.6.3"
|
||||
}
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
{
|
||||
"pages": [
|
||||
"pages/index/index",
|
||||
"pages/adduser/index",
|
||||
"pages/addusers/index",
|
||||
"pages/adduserssuccess/index",
|
||||
"pages/delete/index",
|
||||
"pages/deleteuser/index",
|
||||
"pages/deleteusers/index",
|
||||
"pages/deleteuserssuccess/index",
|
||||
"pages/selectusers/index",
|
||||
"pages/selectusers(ID)/index",
|
||||
"pages/selectusers(college)/index",
|
||||
"pages/selectuserss/index",
|
||||
"pages/selectuserssuccess/index",
|
||||
"pages/updateusers/index",
|
||||
"pages/updateuserssuccess/index"
|
||||
],
|
||||
"window": {
|
||||
"backgroundColor": "#F6F6F6",
|
||||
"backgroundTextStyle": "light",
|
||||
"navigationBarBackgroundColor": "#F6F6F6",
|
||||
"navigationBarTitleText": "管理用户",
|
||||
"navigationBarTextStyle": "black"
|
||||
},
|
||||
"sitemapLocation": "sitemap.json",
|
||||
"style": "v2"
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
/**app.wxss**/
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
button {
|
||||
background: initial;
|
||||
}
|
||||
|
||||
button:focus{
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
button::after{
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
page {
|
||||
background: #f6f6f6;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-start;
|
||||
}
|
@ -0,0 +1,37 @@
|
||||
// miniprogram/components/cloudTipModal/index.js
|
||||
const { isMac } = require('../../envList.js');
|
||||
|
||||
Component({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
showUploadTip: false,
|
||||
tipText: isMac ? 'sh ./uploadCloudFunction.sh' : './uploadCloudFunction.bat'
|
||||
},
|
||||
properties: {
|
||||
showUploadTipProps: Boolean
|
||||
},
|
||||
observers: {
|
||||
showUploadTipProps: function(showUploadTipProps) {
|
||||
this.setData({
|
||||
showUploadTip: showUploadTipProps
|
||||
});
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onChangeShowUploadTip() {
|
||||
this.setData({
|
||||
showUploadTip: !this.data.showUploadTip
|
||||
});
|
||||
},
|
||||
|
||||
copyShell() {
|
||||
wx.setClipboardData({
|
||||
data: this.data.tipText,
|
||||
});
|
||||
},
|
||||
}
|
||||
|
||||
});
|
@ -0,0 +1,4 @@
|
||||
{
|
||||
"usingComponents": {},
|
||||
"component": true
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
<!--miniprogram/components/cloudTipModal/index.wxml-->
|
||||
<view class="install_tip" wx:if="{{showUploadTip}}">
|
||||
<view class="install_tip_back"></view>
|
||||
<view class="install_tip_detail">
|
||||
<view class="install_tip_detail_title">体验前需部署云资源</view>
|
||||
<view class="install_tip_detail_tip">请开启调试器进入终端窗口,复制并运行以下命令</view>
|
||||
<view class="install_tip_detail_shell">
|
||||
{{tipText}}
|
||||
<view bindtap="copyShell" class="install_tip_detail_copy">复制</view>
|
||||
</view>
|
||||
<view bindtap="onChangeShowUploadTip" class="install_tip_detail_button">已执行命令</view>
|
||||
</view>
|
||||
</view>
|
@ -0,0 +1,57 @@
|
||||
.install_tip_back {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.install_tip_detail {
|
||||
position: fixed;
|
||||
background-color: white;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
top: 60%;
|
||||
border-radius: 40rpx 40rpx 0 0;
|
||||
padding: 50rpx;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
.install_tip_detail_title {
|
||||
font-weight: 400;
|
||||
font-size: 40rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.install_tip_detail_tip {
|
||||
font-size: 25rpx;
|
||||
color: rgba(0,0,0,0.4);
|
||||
margin-top: 20rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.install_tip_detail_shell {
|
||||
margin: 70rpx 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.install_tip_detail_copy {
|
||||
color: #546488;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
|
||||
.install_tip_detail_button {
|
||||
color: #07C160;
|
||||
font-weight: 500;
|
||||
background-color: rgba(0,0,0,0.1);
|
||||
width: 60%;
|
||||
text-align: center;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
border-radius: 10rpx;
|
||||
margin: 0 auto;
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
const envList = [{"envId":"cloud1-7gnkwzfv6ba72e50","alias":"cloud1"}]
|
||||
const isMac = false
|
||||
module.exports = {
|
||||
envList,
|
||||
isMac
|
||||
}
|
After Width: | Height: | Size: 906 B |
After Width: | Height: | Size: 155 KiB |
After Width: | Height: | Size: 328 KiB |
After Width: | Height: | Size: 181 KiB |
@ -0,0 +1,89 @@
|
||||
// pages/index/index.js
|
||||
//连接数据库
|
||||
const db = wx.cloud.database()
|
||||
Page({
|
||||
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
User_ID:'',
|
||||
User_College:'',
|
||||
User_Key:'',
|
||||
User_Class:'',
|
||||
User_Grade:''
|
||||
},
|
||||
|
||||
//监听并修改用户名和年龄的输入
|
||||
inputID:function(e){
|
||||
this.setData({
|
||||
User_ID:e.detail.value
|
||||
})
|
||||
},
|
||||
|
||||
inputCollege:function(e){
|
||||
this.setData({
|
||||
User_College:e.detail.value
|
||||
})
|
||||
},
|
||||
|
||||
inputGrade:function(e){
|
||||
this.setData({
|
||||
User_Grade:e.detail.value
|
||||
})
|
||||
},
|
||||
|
||||
inputClass:function(e){
|
||||
this.setData({
|
||||
User_Class:e.detail.value
|
||||
})
|
||||
},
|
||||
|
||||
inputKey:function(e){
|
||||
this.setData({
|
||||
User_Key:e.detail.value
|
||||
})
|
||||
},
|
||||
//使用云函数
|
||||
//插入数据(增)
|
||||
add:function(e){
|
||||
//要添加的数据是一个对象
|
||||
// var user={
|
||||
// username:this.data.username,
|
||||
// age:this.data.age
|
||||
// };
|
||||
|
||||
console.log(e);
|
||||
wx.cloud.callFunction({
|
||||
name: 'useroption',
|
||||
data: {
|
||||
option: 'add',
|
||||
addData:{
|
||||
User_ID:this.data.User_ID,
|
||||
User_College:this.data.User_College,
|
||||
User_Grade:this.data.User_Grade,
|
||||
User_Class:this.data.User_Class,
|
||||
User_Key:this.data.User_Key
|
||||
}
|
||||
},
|
||||
success: res => {
|
||||
wx.showToast({
|
||||
title: '用户添加成功',
|
||||
})
|
||||
console.log("添加成功")
|
||||
console.log(res)
|
||||
},
|
||||
fail:err => {
|
||||
wx.showToast({
|
||||
title: '用户添加失败',
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta:1,
|
||||
})
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
<!--pages/addusers/index.wxml-->
|
||||
<view class="add">
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_ID}}"
|
||||
placeholder="请输入学号"
|
||||
bindblur="inputID"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_College}}"
|
||||
bindblur="inputCollege"
|
||||
placeholder="请输入用户院系"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_Class}}"
|
||||
bindblur="inputClass"
|
||||
placeholder="请输入用户班级"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_Grade}}"
|
||||
bindblur="inputGrade"
|
||||
placeholder="请输入用户年级"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_Key}}"
|
||||
bindblur="inputKey"
|
||||
placeholder="请输入用户密码"
|
||||
/>
|
||||
<button class="button" bindtap="add" type="primary">增加</button>
|
||||
</view>
|
||||
<button class="button" type="primary" bindtap="getback">返回</button>
|
@ -0,0 +1,100 @@
|
||||
/* pages/addusers/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #888888;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
@ -0,0 +1,88 @@
|
||||
// pages/addusers/index.js
|
||||
const db = wx.cloud.database()
|
||||
Page({
|
||||
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
User_ID:'',
|
||||
User_College:'',
|
||||
User_Key:'',
|
||||
User_Class:'',
|
||||
User_Grade:''
|
||||
},
|
||||
|
||||
//监听并修改用户名和年龄的输入
|
||||
inputID:function(e){
|
||||
this.setData({
|
||||
User_ID:e.detail.value
|
||||
})
|
||||
},
|
||||
|
||||
inputCollege:function(e){
|
||||
this.setData({
|
||||
User_College:e.detail.value
|
||||
})
|
||||
},
|
||||
|
||||
inputGrade:function(e){
|
||||
this.setData({
|
||||
User_Grade:e.detail.value
|
||||
})
|
||||
},
|
||||
|
||||
inputClass:function(e){
|
||||
this.setData({
|
||||
User_Class:e.detail.value
|
||||
})
|
||||
},
|
||||
|
||||
inputKey:function(e){
|
||||
this.setData({
|
||||
User_Key:e.detail.value
|
||||
})
|
||||
},
|
||||
//使用云函数
|
||||
//插入数据(增)
|
||||
add:function(e){
|
||||
//要添加的数据是一个对象
|
||||
// var user={
|
||||
// username:this.data.username,
|
||||
// age:this.data.age
|
||||
// };
|
||||
|
||||
console.log(e);
|
||||
wx.cloud.callFunction({
|
||||
name: 'useroption',
|
||||
data: {
|
||||
option: 'add',
|
||||
addData:{
|
||||
User_ID:this.data.User_ID,
|
||||
User_College:this.data.User_College,
|
||||
User_Grade:this.data.User_Grade,
|
||||
User_Class:this.data.User_Class,
|
||||
User_Key:this.data.User_Key
|
||||
}
|
||||
},
|
||||
success: res => {
|
||||
wx.showToast({
|
||||
title: '用户添加成功',
|
||||
})
|
||||
console.log("添加成功")
|
||||
console.log(res)
|
||||
},
|
||||
fail:err => {
|
||||
wx.showToast({
|
||||
title: '用户添加失败',
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta:1,
|
||||
})
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
<!--pages/addusers/index.wxml-->
|
||||
<!--pages/addusers/index.wxml-->
|
||||
<view class="add">
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_ID}}"
|
||||
placeholder="请输入学号"
|
||||
bindblur="inputID"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_College}}"
|
||||
bindblur="inputCollege"
|
||||
placeholder="请输入用户院系"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_Class}}"
|
||||
bindblur="inputClass"
|
||||
placeholder="请输入用户班级"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_Grade}}"
|
||||
bindblur="inputGrade"
|
||||
placeholder="请输入用户年级"
|
||||
/>
|
||||
<input
|
||||
type="text"
|
||||
value="{{User_Key}}"
|
||||
bindblur="inputKey"
|
||||
placeholder="请输入用户密码"
|
||||
/>
|
||||
<button class="button" bindtap="add" type="primary">增加</button>
|
||||
</view>
|
||||
<button class="button" type="primary" bindtap="getback">返回</button>
|
@ -0,0 +1,100 @@
|
||||
/* pages/addusers/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #888888;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
// pages/adduserssuccess/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,2 @@
|
||||
<!--pages/adduserssuccess/index.wxml-->
|
||||
<text>pages/adduserssuccess/index.wxml</text>
|
@ -0,0 +1 @@
|
||||
/* pages/adduserssuccess/index.wxss */
|
@ -0,0 +1,14 @@
|
||||
// pages/delete/index.js
|
||||
const db = wx.cloud.database()
|
||||
Page({
|
||||
removeuser:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/deleteuser/index',
|
||||
})
|
||||
},
|
||||
removeusers:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/deleteusers/index',
|
||||
})
|
||||
},
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
<!--pages/delete/index.wxml-->
|
||||
<view class="delete">
|
||||
<button class="button" type="primary" bindtap="removeuser">删除单个用户</button>
|
||||
</view>
|
||||
<view class="delete">
|
||||
<button class="button" type="primary" bindtap="removeusers">删除一批用户</button>
|
||||
</view>
|
@ -0,0 +1,100 @@
|
||||
/* pages/delete/index.wxss */
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #888888;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
// pages/deleteuser/index.js
|
||||
Page({
|
||||
inputdelID:function(e){
|
||||
this.setData({
|
||||
delUser_ID:e.detail.value
|
||||
})
|
||||
},
|
||||
removeDataFn:function(){
|
||||
wx.cloud.callFunction({
|
||||
name: 'useroption',
|
||||
data: {
|
||||
option: 'deleteuser',
|
||||
//要删除的数据
|
||||
delUser_ID:this.data.delUser_ID
|
||||
},
|
||||
success: res => {
|
||||
wx.showToast({
|
||||
title: '用户删除成功',
|
||||
})
|
||||
console.log(res)
|
||||
},
|
||||
fail: err => {
|
||||
wx.showToast({
|
||||
title: '用户删除失败',
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta:2,
|
||||
})
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
<!--pages/deleteuser/index.wxml-->
|
||||
<view class="delete">
|
||||
<input
|
||||
value="{{delUser_ID}}"
|
||||
placeholder="请输入要删除用户的学号"
|
||||
bindblur="inputdelID"
|
||||
/>
|
||||
</view>
|
||||
<button class="button" type="primary" bindtap="removeDataFn">删除用户</button>
|
||||
<button class="button" type="primary" bindtap="getback">返回</button>
|
@ -0,0 +1,100 @@
|
||||
/* pages/deleteuser/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #888888;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
// pages/deleteusers/index.js
|
||||
Page({
|
||||
inputdelCollege:function(e){
|
||||
this.setData({
|
||||
delUser_College:e.detail.value,
|
||||
})
|
||||
},
|
||||
inputdelGrade:function(e){
|
||||
this.setData({
|
||||
delUser_Grade:e.detail.value,
|
||||
})
|
||||
},
|
||||
inputdelClass:function(e){
|
||||
this.setData({
|
||||
delUser_Class:e.detail.value,
|
||||
})
|
||||
},
|
||||
removeDataFn:function(){
|
||||
wx.cloud.callFunction({
|
||||
name: 'useroption',
|
||||
data: {
|
||||
option: 'deleteusers',
|
||||
//要删除的数据
|
||||
delUser_College:this.data.delUser_College,
|
||||
delUser_Grade:this.data.delUser_Grade,
|
||||
delUser_Class:this.data.delUser_Class
|
||||
},
|
||||
success: res => {
|
||||
wx.showToast({
|
||||
title: '用户删除成功',
|
||||
})
|
||||
console.log(res)
|
||||
},
|
||||
fail: err => {
|
||||
wx.showToast({
|
||||
title: '用户删除失败',
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta:2,
|
||||
})
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
<!--pages/deleteusers/index.wxml-->
|
||||
<view class="delete">
|
||||
<input
|
||||
value="{{delUser_College}}"
|
||||
placeholder="请输入要删除用户的院系"
|
||||
bindblur="inputdelCollege"
|
||||
/>
|
||||
<input
|
||||
value="{{delUser_Grade}}"
|
||||
placeholder="请输入要删除用户的年级"
|
||||
bindblur="inputdelGrade"
|
||||
/>
|
||||
<input
|
||||
value="{{delUser_Class}}"
|
||||
placeholder="请输入要删除用户的班级"
|
||||
bindblur="inputdelClass"
|
||||
/>
|
||||
</view>
|
||||
<button class="button" type="primary" bindtap="removeDataFn">删除用户</button>
|
||||
<button class="button" type="primary" bindtap="getback">返回</button>
|
@ -0,0 +1,100 @@
|
||||
/* pages/deleteusers/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #888888;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
// pages/deleteuserssuccess/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,2 @@
|
||||
<!--pages/deleteuserssuccess/index.wxml-->
|
||||
<text>pages/deleteuserssuccess/index.wxml</text>
|
@ -0,0 +1 @@
|
||||
/* pages/deleteuserssuccess/index.wxss */
|
@ -0,0 +1,43 @@
|
||||
// pages/index/index.js
|
||||
//连接数据库
|
||||
const db = wx.cloud.database()
|
||||
Page({
|
||||
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
|
||||
|
||||
|
||||
//使用云函数
|
||||
//插入数据(增)
|
||||
add:function(e){
|
||||
wx.navigateTo({
|
||||
url: '/pages/adduser/index',
|
||||
})
|
||||
},
|
||||
|
||||
//删除数据(删)
|
||||
removeDataFn:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/delete/index',
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
//查询数据(查)
|
||||
searchDataNameFn:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/selectusers/index',
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
//修改数据(改)
|
||||
updateDataFn(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/updateusers/index',
|
||||
})
|
||||
},
|
||||
})
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"usingComponents": {
|
||||
"cloud-tip-modal": "/components/cloudTipModal/index"
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
<!--pages/index/index.wxml-->
|
||||
<view class="add">
|
||||
<button class="button" bindtap="add" type="primary">增加用户</button>
|
||||
</view>
|
||||
|
||||
<view class="delete">
|
||||
<button class="button" type="primary" bindtap="removeDataFn">删除用户</button>
|
||||
</view>
|
||||
|
||||
<view class="get">
|
||||
<button class="button" type="primary" bindtap="searchDataNameFn">查询用户</button>
|
||||
</view>
|
||||
|
||||
<view class="update">
|
||||
<button class="button" type="primary" bindtap="updateDataFn">修改用户</button>
|
||||
</view>
|
||||
|
||||
|
@ -0,0 +1,101 @@
|
||||
/**index.wxss**/
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #888888;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
// pages/selectusers/index.js
|
||||
Page({
|
||||
inputgetID:function(e){
|
||||
this.setData({
|
||||
getUser_ID:e.detail.value
|
||||
})
|
||||
},
|
||||
searchDataNameFn:function(){
|
||||
wx.cloud.callFunction({
|
||||
name: 'useroption',
|
||||
data: {
|
||||
option: 'getID',
|
||||
getUser_ID:this.data.getUser_ID
|
||||
},
|
||||
success: res => {
|
||||
this.setData({
|
||||
array: res.result.data
|
||||
})
|
||||
wx.showToast({
|
||||
title: '用户查询成功',
|
||||
})
|
||||
console.log(res.result.data)
|
||||
},
|
||||
fail: err => {
|
||||
wx.showToast({
|
||||
title: '用户查询失败',
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta:2,
|
||||
})
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
<!--pages/selectusers/index.wxml-->
|
||||
<view class="getID">
|
||||
<input
|
||||
value="{{getUser_ID}}"
|
||||
placeholder="请输入要查询用户的学号"
|
||||
bindblur="inputgetID"
|
||||
/>
|
||||
</view>
|
||||
|
||||
<view>
|
||||
<view wx:if="{{array}}" class="code_box">
|
||||
<view class="code_box_title">用户库</view>
|
||||
<view class="code_box_record">
|
||||
<view class="code_box_record_title">年级</view>
|
||||
<view class="code_box_record_title">院系</view>
|
||||
<view class="code_box_record_title">班级</view>
|
||||
<view class="code_box_record_title">学号</view>
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="code_box_record" wx:for="{{array}}" wx:key="_id">
|
||||
<view class="code_box_record_detail">{{item.User_College}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_Grade}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_Class}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_ID}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<button class="button" type="primary" bindtap="searchDataNameFn">查询</button>
|
||||
|
||||
<button class="button" type="primary" bindtap="getback">返回</button>
|
@ -0,0 +1,145 @@
|
||||
/* pages/selectusers/index.wxss */
|
||||
/* pages/selectusers(college)/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
width: 90%;
|
||||
text-align: left;
|
||||
margin-top: 30rpx;
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
||||
|
||||
.code_box {
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
margin-top: 30rpx;
|
||||
padding: 17rpx;
|
||||
}
|
||||
|
||||
.code_box_title {
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
font-size: 26rpx;
|
||||
margin-bottom: 20rpx;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.code_box_record {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.code_box_record_title {
|
||||
width: 33%;
|
||||
font-size: 26rpx;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
|
||||
.code_box_record_detail {
|
||||
width: 33%;
|
||||
font-size: 26rpx;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
|
||||
.button {
|
||||
width: 300rpx;
|
||||
text-align: center;
|
||||
margin: 20% auto 0 auto;
|
||||
height: 80rpx;
|
||||
color: white;
|
||||
border-radius: 5px;
|
||||
line-height: 80rpx;
|
||||
background-color: #07c160;
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
// pages/selectusers(college)/index.js
|
||||
Page({
|
||||
inputgetCollege:function(e){
|
||||
this.setData({
|
||||
getUser_College:e.detail.value
|
||||
})
|
||||
},
|
||||
inputgetGrade:function(e){
|
||||
this.setData({
|
||||
getUser_Grade:e.detail.value
|
||||
})
|
||||
},
|
||||
inputgetClass:function(e){
|
||||
this.setData({
|
||||
getUser_Class:e.detail.value
|
||||
})
|
||||
},
|
||||
searchDataNameFn:function(){
|
||||
wx.cloud.callFunction({
|
||||
name: 'useroption',
|
||||
data: {
|
||||
option: 'getCollege',
|
||||
getUser_College:this.data.getUser_College,
|
||||
getUser_Grade:this.data.getUser_Grade,
|
||||
getUser_Class:this.data.getUser_Class
|
||||
},
|
||||
success: res => {
|
||||
this.setData({
|
||||
array: res.result.data
|
||||
})
|
||||
wx.showToast({
|
||||
title: '用户查询成功',
|
||||
})
|
||||
console.log(res.result.data)
|
||||
},
|
||||
fail: err => {
|
||||
wx.showToast({
|
||||
title: '用户查询失败',
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta:2,
|
||||
})
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
<!--pages/selectusers(college)/index.wxml-->
|
||||
<view class="getCollege">
|
||||
<input
|
||||
value="{{getUser_College}}"
|
||||
placeholder="请输入要查询用户的学院"
|
||||
bindblur="inputgetCollege"
|
||||
/>
|
||||
<input
|
||||
value="{{getUser_Grade}}"
|
||||
placeholder="请输入要查询用户的年级"
|
||||
bindblur="inputgetGrade"
|
||||
/>
|
||||
<input
|
||||
value="{{getUser_Class}}"
|
||||
placeholder="请输入要查询用户的班级"
|
||||
bindblur="inputgetClass"
|
||||
/>
|
||||
</view>
|
||||
|
||||
<view>
|
||||
<view wx:if="{{array}}" class="code_box">
|
||||
<view class="code_box_title">用户库</view>
|
||||
<view class="code_box_record">
|
||||
<view class="code_box_record_title">年级</view>
|
||||
<view class="code_box_record_title">院系</view>
|
||||
<view class="code_box_record_title">班级</view>
|
||||
<view class="code_box_record_title">学号</view>
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="code_box_record" wx:for="{{array}}" wx:key="_id">
|
||||
<view class="code_box_record_detail">{{item.User_College}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_Grade}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_Class}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_ID}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<button class="button" type="primary" bindtap="searchDataNameFn">查询</button>
|
||||
|
||||
<button class="button" type="primary" bindtap="getback">返回</button>
|
@ -0,0 +1,144 @@
|
||||
/* pages/selectusers(college)/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
width: 90%;
|
||||
text-align: left;
|
||||
margin-top: 30rpx;
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
||||
|
||||
.code_box {
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
margin-top: 30rpx;
|
||||
padding: 17rpx;
|
||||
}
|
||||
|
||||
.code_box_title {
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
font-size: 26rpx;
|
||||
margin-bottom: 20rpx;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.code_box_record {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.code_box_record_title {
|
||||
width: 33%;
|
||||
font-size: 26rpx;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
|
||||
.code_box_record_detail {
|
||||
width: 33%;
|
||||
font-size: 26rpx;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
|
||||
.button {
|
||||
width: 300rpx;
|
||||
text-align: center;
|
||||
margin: 20% auto 0 auto;
|
||||
height: 80rpx;
|
||||
color: white;
|
||||
border-radius: 5px;
|
||||
line-height: 80rpx;
|
||||
background-color: #07c160;
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
// pages/selectusers/index.js
|
||||
const db = wx.cloud.database()
|
||||
Page({
|
||||
//查询数据(查)
|
||||
searchID:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/selectusers(ID)/index',
|
||||
})
|
||||
},
|
||||
|
||||
searchCollege:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/selectusers(college)/index',
|
||||
})
|
||||
},
|
||||
|
||||
search:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/selectuserss/index',
|
||||
})
|
||||
},
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
<!--pages/selectusers/index.wxml-->
|
||||
<view class="get">
|
||||
<button class="button" type="primary" bindtap="searchID">查询单个用户</button>
|
||||
</view>
|
||||
|
||||
<view class="get">
|
||||
<button class="button" type="primary" bindtap="searchCollege">查询多个用户</button>
|
||||
</view>
|
||||
|
||||
<view class="get">
|
||||
<button class="button" type="primary" bindtap="search">查询所有用户</button>
|
||||
</view>
|
@ -0,0 +1,101 @@
|
||||
/* pages/selectusers/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #888888;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
// pages/selectuserss/index.js
|
||||
Page({
|
||||
searchDataNameFn:function(){
|
||||
wx.cloud.callFunction({
|
||||
name: 'useroption',
|
||||
data: {
|
||||
option: 'getusers',
|
||||
},
|
||||
success: res => {
|
||||
this.setData({
|
||||
array: res.result.data
|
||||
})
|
||||
wx.showToast({
|
||||
title: '用户查询成功',
|
||||
})
|
||||
console.log(res.result.data)
|
||||
},
|
||||
fail: err => {
|
||||
wx.showToast({
|
||||
title: '用户查询失败',
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta:2,
|
||||
})
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
<!--pages/selectuserss/index.wxml-->
|
||||
<view>
|
||||
<view wx:if="{{array}}" class="code_box">
|
||||
<view class="code_box_title">用户库</view>
|
||||
<view class="code_box_record">
|
||||
<view class="code_box_record_title">年级</view>
|
||||
<view class="code_box_record_title">院系</view>
|
||||
<view class="code_box_record_title">班级</view>
|
||||
<view class="code_box_record_title">学号</view>
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="code_box_record" wx:for="{{array}}" wx:key="_id">
|
||||
<view class="code_box_record_detail">{{item.User_College}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_Grade}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_Class}}</view>
|
||||
<view class="code_box_record_detail">{{item.User_ID}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<button class="button" type="primary" bindtap="searchDataNameFn">查询</button>
|
@ -0,0 +1,145 @@
|
||||
/* pages/selectuserss/index.wxss */
|
||||
/* pages/selectusers(college)/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
width: 90%;
|
||||
text-align: left;
|
||||
margin-top: 30rpx;
|
||||
margin-left: 20rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
||||
|
||||
.code_box {
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
margin-top: 30rpx;
|
||||
padding: 17rpx;
|
||||
}
|
||||
|
||||
.code_box_title {
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
font-size: 26rpx;
|
||||
margin-bottom: 20rpx;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.code_box_record {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.code_box_record_title {
|
||||
width: 33%;
|
||||
font-size: 26rpx;
|
||||
color: rgba(0, 0, 0, 0.5);
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
|
||||
.code_box_record_detail {
|
||||
width: 33%;
|
||||
font-size: 26rpx;
|
||||
padding: 20rpx 0;
|
||||
}
|
||||
|
||||
.button {
|
||||
width: 300rpx;
|
||||
text-align: center;
|
||||
margin: 20% auto 0 auto;
|
||||
height: 80rpx;
|
||||
color: white;
|
||||
border-radius: 5px;
|
||||
line-height: 80rpx;
|
||||
background-color: #07c160;
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
// pages/selectuserssuccess/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,2 @@
|
||||
<!--pages/selectuserssuccess/index.wxml-->
|
||||
<text>pages/selectuserssuccess/index.wxml</text>
|
@ -0,0 +1 @@
|
||||
/* pages/selectuserssuccess/index.wxss */
|
@ -0,0 +1,46 @@
|
||||
// pages/updateusers/index.js
|
||||
Page({
|
||||
//修改数据(改)
|
||||
inputupdateID:function(e){
|
||||
this.setData({
|
||||
updateUser_ID:e.detail.value
|
||||
})
|
||||
},
|
||||
inputupdateCollege:function(e){
|
||||
this.setData({
|
||||
updateUser_College:e.detail.value
|
||||
})
|
||||
},
|
||||
inputupdateKey:function(e){
|
||||
this.setData({
|
||||
updateUser_Key:e.detail.value
|
||||
})
|
||||
},
|
||||
updateDataFn(){
|
||||
wx.cloud.callFunction({
|
||||
name: 'useroption',
|
||||
data: {
|
||||
option: 'update',
|
||||
updateUser_ID:this.data.updateUser_ID,
|
||||
updateUser_College:this.data.updateUser_College,
|
||||
updateUser_Key:this.data.updateUser_Key
|
||||
},
|
||||
success: res => {
|
||||
wx.showToast({
|
||||
title: '用户修改成功',
|
||||
})
|
||||
console.log(res)
|
||||
},
|
||||
fail:err => {
|
||||
wx.showToast({
|
||||
title: '用户修改失败',
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta:1,
|
||||
})
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
<!--pages/updateusers/index.wxml-->
|
||||
<view class="update">
|
||||
<input
|
||||
value="{{updateUser_ID}}"
|
||||
placeholder="请输入要修改用户的学号"
|
||||
bindblur="inputupdateID"
|
||||
/>
|
||||
</view>
|
||||
<view class="update">
|
||||
<input
|
||||
value="{{updateUser_College}}"
|
||||
placeholder="请输入修改之后的学院(不改则不改变)"
|
||||
bindblur="inputupdateCollege"
|
||||
/>
|
||||
</view>
|
||||
<view class="update">
|
||||
<input
|
||||
value="{{updateUser_Key}}"
|
||||
placeholder="请输入修改之后的密码(不改则不改变)"
|
||||
bindblur="inputupdateKey"
|
||||
/>
|
||||
</view>
|
||||
<button class="button" type="primary" bindtap="updateDataFn">修改用户</button>
|
||||
<button class="button" type="primary" bindtap="getback">返回</button>
|
@ -0,0 +1,100 @@
|
||||
/* pages/updateusers/index.wxss */
|
||||
|
||||
page {
|
||||
padding-top: 54rpx;
|
||||
background-color: #f6f6f6;
|
||||
padding-bottom: 60rpx;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-top: 50px;
|
||||
margin-left: 50px;
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-family: PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #000000;
|
||||
font-size: 44rpx;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
|
||||
.top_tip {
|
||||
font-size: 28rpx;
|
||||
font-family: PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #888888;
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.power {
|
||||
margin-top: 30rpx;
|
||||
border-radius: 5px;
|
||||
background-color: white;
|
||||
width: 93%;
|
||||
padding-bottom: 1rpx;
|
||||
}
|
||||
|
||||
.power_info {
|
||||
display: flex;
|
||||
padding: 30rpx 25rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_info_more {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.power_info_less {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
|
||||
.power_info_text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.power_info_text_title {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 400;
|
||||
font-size: 35rpx;
|
||||
}
|
||||
|
||||
.power_info_text_tip {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 25rpx;
|
||||
}
|
||||
|
||||
.power_item {
|
||||
padding: 30rpx 25rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.power_item_title {
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
.power_item_icon {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
width: 95%;
|
||||
margin: 0 auto;
|
||||
height: 2rpx;
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.environment {
|
||||
color: rgba(0, 0, 0, 0.4);
|
||||
font-size: 24rpx;
|
||||
margin-top: 25%;
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
// pages/updateuserssuccess/index.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,2 @@
|
||||
<!--pages/updateuserssuccess/index.wxml-->
|
||||
<text>pages/updateuserssuccess/index.wxml</text>
|
@ -0,0 +1 @@
|
||||
/* pages/updateuserssuccess/index.wxss */
|
@ -0,0 +1,7 @@
|
||||
{
|
||||
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
|
||||
"rules": [{
|
||||
"action": "allow",
|
||||
"page": "*"
|
||||
}]
|
||||
}
|
@ -0,0 +1,79 @@
|
||||
{
|
||||
"miniprogramRoot": "miniprogram/",
|
||||
"cloudfunctionRoot": "cloud/",
|
||||
"setting": {
|
||||
"urlCheck": true,
|
||||
"es6": true,
|
||||
"enhance": true,
|
||||
"postcss": true,
|
||||
"preloadBackgroundData": false,
|
||||
"minified": true,
|
||||
"newFeature": true,
|
||||
"coverView": true,
|
||||
"nodeModules": false,
|
||||
"autoAudits": false,
|
||||
"showShadowRootInWxmlPanel": true,
|
||||
"scopeDataCheck": false,
|
||||
"uglifyFileName": false,
|
||||
"checkInvalidKey": true,
|
||||
"checkSiteMap": true,
|
||||
"uploadWithSourceMap": true,
|
||||
"compileHotReLoad": false,
|
||||
"lazyloadPlaceholderEnable": false,
|
||||
"useMultiFrameRuntime": true,
|
||||
"useApiHook": true,
|
||||
"useApiHostProcess": true,
|
||||
"babelSetting": {
|
||||
"ignore": [],
|
||||
"disablePlugins": [],
|
||||
"outputPath": ""
|
||||
},
|
||||
"enableEngineNative": false,
|
||||
"useIsolateContext": true,
|
||||
"userConfirmedBundleSwitch": false,
|
||||
"packNpmManually": false,
|
||||
"packNpmRelationList": [],
|
||||
"minifyWXSS": true,
|
||||
"disableUseStrict": false,
|
||||
"showES6CompileOption": false,
|
||||
"useCompilerPlugins": false,
|
||||
"minifyWXML": true
|
||||
},
|
||||
"appid": "wx5871b0202e96c9d3",
|
||||
"projectname": "quickstart-wx-cloud",
|
||||
"libVersion": "2.14.1",
|
||||
"cloudfunctionTemplateRoot": "cloudfunctionTemplate/",
|
||||
"condition": {
|
||||
"search": {
|
||||
"list": []
|
||||
},
|
||||
"conversation": {
|
||||
"list": []
|
||||
},
|
||||
"plugin": {
|
||||
"list": []
|
||||
},
|
||||
"game": {
|
||||
"list": []
|
||||
},
|
||||
"miniprogram": {
|
||||
"list": [
|
||||
{
|
||||
"id": -1,
|
||||
"name": "db guide",
|
||||
"pathName": "pages/databaseGuide/databaseGuide"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"srcMiniprogramRoot": "miniprogram/",
|
||||
"compileType": "miniprogram",
|
||||
"packOptions": {
|
||||
"ignore": [],
|
||||
"include": []
|
||||
},
|
||||
"editorSetting": {
|
||||
"tabIndent": "insertSpaces",
|
||||
"tabSize": 2
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
"E:\小程序制作软件\微信web开发者工具\cli.bat" cloud functions deploy --e cloud1-7gnkwzfv6ba72e50 --n quickstartFunctions --r --project "E:\校园导航(管理用户)" --report_first --report
|
Loading…
Reference in new issue