huangjunfeng_branch
parent
a01d95a342
commit
9af0b1771f
@ -1,66 +1,70 @@
|
||||
// pages/index/index.js
|
||||
//连接数据库
|
||||
const db = wx.cloud.database()
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
loginOK: false
|
||||
},
|
||||
//map
|
||||
map() {
|
||||
wx.navigateTo({
|
||||
url: '/pages/ModifyMap/ModifyMap',
|
||||
})
|
||||
},
|
||||
//information
|
||||
information() {
|
||||
wx.navigateTo({
|
||||
url: '/pages/ModifyInformation/ModifyInformation',
|
||||
})
|
||||
},
|
||||
//account
|
||||
account() {
|
||||
wx.navigateTo({
|
||||
url: '/pages/index/index'
|
||||
})
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
* 页面的初始数据
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
//使用云函数
|
||||
//插入数据(增)
|
||||
add:function(e){
|
||||
wx.navigateTo({
|
||||
url: '/pages/adduser/index',
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
//删除数据(删)
|
||||
removeDataFn:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/delete/index',
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
//查询数据(查)
|
||||
searchDataNameFn:function(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/selectusers/index',
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
//修改数据(改)
|
||||
updateDataFn(){
|
||||
wx.navigateTo({
|
||||
url: '/pages/updateusers/index',
|
||||
})
|
||||
},
|
||||
//返回
|
||||
getback:function(){
|
||||
wx.navigateBack({
|
||||
delta: 1,
|
||||
})
|
||||
},
|
||||
})
|
@ -1,2 +1,24 @@
|
||||
<!--pages/index/index.wxml-->
|
||||
<text>pages/index/index.wxml</text>
|
||||
<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>
|
||||
<view class="ModifyAccount">
|
||||
<button class="map" type="primary" bindtap="map" style="position: relative; left: -244rpx; top: 136rpx; width: 263rpx; height: 136rpx; display: block; box-sizing: border-box">修改地图</button>
|
||||
<button class="information" type="primary" bindtap="information" style="width: 263rpx; height: 136rpx; display: block; box-sizing: border-box; left: 19rpx; top: 0rpx; position: relative">修改信息</button>
|
||||
<button class="account" type="primary" bindtap="account" style="width: 263rpx; height: 136rpx; display: block; box-sizing: border-box; left: 282rpx; top: -136rpx; position: relative">管理账户</button>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in new issue