描述:添加访客邀约页面

This commit is contained in:
SelfRidicule 2024-02-26 09:06:34 +08:00
parent 8e00675f4c
commit c31f3c1a94
10 changed files with 161 additions and 3 deletions

View File

@ -48,7 +48,9 @@
"pages/complaint/complaintDetail/complaintDetail",
"pages/outer/outer",
"pages/meeting/accessControl/accessControl",
"pages/meeting/accessControl/accessControlRecord/accessControlRecord"
"pages/meeting/accessControl/accessControlRecord/accessControlRecord",
"pages/meeting/meetingReservation/meetingReservation",
"pages/meeting/visitorIinvitation/visitorIinvitation"
],
"window": {
"backgroundTextStyle": "light",

View File

@ -87,7 +87,7 @@ Page({
{
name: "会议预约",
img: "/profile/static/index/menu-hyyy.png",
path: ""
path: "/pages/meeting/meetingReservation/meetingReservation"
},
{
name: "预约记录",
@ -97,7 +97,7 @@ Page({
{
name: "访客邀约",
img: "/profile/static/index/menu-fkyy.png",
path: ""
path: "/pages/meeting/visitorIinvitation/visitorIinvitation"
},
{
name: "远程门禁",

View File

@ -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() {
}
})

View File

@ -0,0 +1,3 @@
{
"usingComponents": {}
}

View File

@ -0,0 +1,9 @@
<view class="container">
<!-- 会议室列表 -->
<view class="meetingRoomView">
<view class="meetingRoomItem">
</view>
</view>
</view>

View File

@ -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() {
}
})

View File

@ -0,0 +1,3 @@
{
"usingComponents": {}
}

View File

@ -0,0 +1,2 @@
<!--pages/meeting/visitorIinvitation/visitorIinvitation.wxml-->
<text>pages/meeting/visitorIinvitation/visitorIinvitation.wxml</text>

View File

@ -0,0 +1 @@
/* pages/meeting/visitorIinvitation/visitorIinvitation.wxss */