mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 16:39:37 +08:00
描述:目录修改
This commit is contained in:
parent
8a6108a6f3
commit
33fca3fd0a
@ -50,7 +50,6 @@
|
|||||||
"pages/meeting/accessControl/accessControl",
|
"pages/meeting/accessControl/accessControl",
|
||||||
"pages/meeting/accessControl/accessControlRecord/accessControlRecord",
|
"pages/meeting/accessControl/accessControlRecord/accessControlRecord",
|
||||||
"pages/meeting/meetingReservation/meetingReservation",
|
"pages/meeting/meetingReservation/meetingReservation",
|
||||||
"pages/meeting/visitorIinvitation/visitorIinvitation",
|
|
||||||
"pages/meeting/meetingRoom/meetingRoom",
|
"pages/meeting/meetingRoom/meetingRoom",
|
||||||
"pages/meeting/meetingRoom/meetingFacilities/meetingFacilities",
|
"pages/meeting/meetingRoom/meetingFacilities/meetingFacilities",
|
||||||
"pages/meeting/meetingRoom/meetingOrder/meetingOrder",
|
"pages/meeting/meetingRoom/meetingOrder/meetingOrder",
|
||||||
@ -60,11 +59,12 @@
|
|||||||
"pages/meeting/pay/waitPay/waitPay",
|
"pages/meeting/pay/waitPay/waitPay",
|
||||||
"pages/meeting/pay/waitComplete/waitComplete",
|
"pages/meeting/pay/waitComplete/waitComplete",
|
||||||
"pages/meeting/reservationRecord/reservationRecord",
|
"pages/meeting/reservationRecord/reservationRecord",
|
||||||
"pages/meeting/visitorIinvitation/indexBar/indexBar",
|
|
||||||
"pages/meeting/visitorIinvitation/appointmentRecord/appointmentRecord",
|
|
||||||
"pages/meeting/reservationRecord/meetingRecord/meetingRecord",
|
"pages/meeting/reservationRecord/meetingRecord/meetingRecord",
|
||||||
"pages/meeting/reservationRecord/meetingRecord/meetingDetail/meetingDetail",
|
"pages/meeting/reservationRecord/meetingRecord/meetingDetail/meetingDetail",
|
||||||
"pages/meeting/invite/invite"
|
"pages/meeting/invite/invite",
|
||||||
|
"pages/meeting/visitorIinvitation/list/list",
|
||||||
|
"pages/meeting/visitorIinvitation/detail/detali",
|
||||||
|
"pages/meeting/visitorIinvitation/indexBar/indexBar"
|
||||||
],
|
],
|
||||||
"window": {
|
"window": {
|
||||||
"backgroundTextStyle": "light",
|
"backgroundTextStyle": "light",
|
||||||
@ -78,8 +78,7 @@
|
|||||||
"borderStyle": "black",
|
"borderStyle": "black",
|
||||||
"selectedColor": "#5C8EFF",
|
"selectedColor": "#5C8EFF",
|
||||||
"color": "#333333",
|
"color": "#333333",
|
||||||
"list": [
|
"list": [{
|
||||||
{
|
|
||||||
"pagePath": "pages/index/index",
|
"pagePath": "pages/index/index",
|
||||||
"iconPath": "/images/tabbar/home.png",
|
"iconPath": "/images/tabbar/home.png",
|
||||||
"selectedIconPath": "/images/tabbar/home-select.png",
|
"selectedIconPath": "/images/tabbar/home-select.png",
|
||||||
|
@ -97,7 +97,7 @@ Page({
|
|||||||
{
|
{
|
||||||
name: "访客预约",
|
name: "访客预约",
|
||||||
img: "/profile/static/index/menu-fkyy.png",
|
img: "/profile/static/index/menu-fkyy.png",
|
||||||
path: "/pages/meeting/visitorIinvitation/appointmentRecord/appointmentRecord"
|
path: "/pages/meeting/visitorIinvitation/list/list"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "预约记录",
|
name: "预约记录",
|
||||||
@ -143,7 +143,7 @@ Page({
|
|||||||
}, {
|
}, {
|
||||||
bg: '/profile/static/index/banner/2.jpg',
|
bg: '/profile/static/index/banner/2.jpg',
|
||||||
url: ''
|
url: ''
|
||||||
},{
|
}, {
|
||||||
bg: '/profile/static/index/banner/3.jpg',
|
bg: '/profile/static/index/banner/3.jpg',
|
||||||
url: ''
|
url: ''
|
||||||
}]
|
}]
|
||||||
@ -154,11 +154,11 @@ Page({
|
|||||||
const data = e.currentTarget.dataset
|
const data = e.currentTarget.dataset
|
||||||
console.log('switchTab', data)
|
console.log('switchTab', data)
|
||||||
const url = data.path
|
const url = data.path
|
||||||
if(url == 'pages/meeting/accessControl/accessControl'){
|
if (url == 'pages/meeting/accessControl/accessControl') {
|
||||||
wx.navigateTo({
|
wx.navigateTo({
|
||||||
url: '/' + url
|
url: '/' + url
|
||||||
})
|
})
|
||||||
}else{
|
} else {
|
||||||
wx.switchTab({
|
wx.switchTab({
|
||||||
url: '/' + url
|
url: '/' + url
|
||||||
})
|
})
|
||||||
|
@ -0,0 +1,66 @@
|
|||||||
|
// pages/meeting/visitorIinvitation/detail/detali.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad(options) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
<!--pages/meeting/visitorIinvitation/detail/detali.wxml-->
|
||||||
|
<text>pages/meeting/visitorIinvitation/detail/detali.wxml</text>
|
@ -0,0 +1 @@
|
|||||||
|
/* pages/meeting/visitorIinvitation/detail/detali.wxss */
|
Loading…
x
Reference in New Issue
Block a user