mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 11:59:37 +08:00
描述:添加访客邀约页面
This commit is contained in:
parent
8e00675f4c
commit
c31f3c1a94
@ -48,7 +48,9 @@
|
|||||||
"pages/complaint/complaintDetail/complaintDetail",
|
"pages/complaint/complaintDetail/complaintDetail",
|
||||||
"pages/outer/outer",
|
"pages/outer/outer",
|
||||||
"pages/meeting/accessControl/accessControl",
|
"pages/meeting/accessControl/accessControl",
|
||||||
"pages/meeting/accessControl/accessControlRecord/accessControlRecord"
|
"pages/meeting/accessControl/accessControlRecord/accessControlRecord",
|
||||||
|
"pages/meeting/meetingReservation/meetingReservation",
|
||||||
|
"pages/meeting/visitorIinvitation/visitorIinvitation"
|
||||||
],
|
],
|
||||||
"window": {
|
"window": {
|
||||||
"backgroundTextStyle": "light",
|
"backgroundTextStyle": "light",
|
||||||
|
@ -87,7 +87,7 @@ Page({
|
|||||||
{
|
{
|
||||||
name: "会议预约",
|
name: "会议预约",
|
||||||
img: "/profile/static/index/menu-hyyy.png",
|
img: "/profile/static/index/menu-hyyy.png",
|
||||||
path: ""
|
path: "/pages/meeting/meetingReservation/meetingReservation"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "预约记录",
|
name: "预约记录",
|
||||||
@ -97,7 +97,7 @@ Page({
|
|||||||
{
|
{
|
||||||
name: "访客邀约",
|
name: "访客邀约",
|
||||||
img: "/profile/static/index/menu-fkyy.png",
|
img: "/profile/static/index/menu-fkyy.png",
|
||||||
path: ""
|
path: "/pages/meeting/visitorIinvitation/visitorIinvitation"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "远程门禁",
|
name: "远程门禁",
|
||||||
|
@ -0,0 +1,69 @@
|
|||||||
|
// pages/meeting/meetingReservation/meetingReservation.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad(options) {
|
||||||
|
// 页面初始化 options为页面跳转所带来的参数
|
||||||
|
wx.setNavigationBarTitle({
|
||||||
|
title: options.name
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
<view class="container">
|
||||||
|
|
||||||
|
<!-- 会议室列表 -->
|
||||||
|
<view class="meetingRoomView">
|
||||||
|
<view class="meetingRoomItem">
|
||||||
|
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
@ -0,0 +1,69 @@
|
|||||||
|
// pages/meeting/visitorIinvitation/visitorIinvitation.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad(options) {
|
||||||
|
// 页面初始化 options为页面跳转所带来的参数
|
||||||
|
wx.setNavigationBarTitle({
|
||||||
|
title: options.name
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
<!--pages/meeting/visitorIinvitation/visitorIinvitation.wxml-->
|
||||||
|
<text>pages/meeting/visitorIinvitation/visitorIinvitation.wxml</text>
|
@ -0,0 +1 @@
|
|||||||
|
/* pages/meeting/visitorIinvitation/visitorIinvitation.wxss */
|
Loading…
x
Reference in New Issue
Block a user