This commit is contained in:
SelfRidicule 2024-03-11 10:19:49 +08:00
parent f8ead93f40
commit 1ec38ee95c
2 changed files with 9 additions and 2 deletions

View File

@ -17,7 +17,14 @@ Page({
// 跳转-会议记录 // 跳转-会议记录
jumpMeetingRecord() { jumpMeetingRecord() {
wx.navigateTo({ wx.navigateTo({
url: '/pages/meeting/reservationRecord/meetingRecord/meetingRecord', url: '/pages/meeting/reservationRecord/meetingRecord/meetingRecord',
})
},
// 跳转-访客预约
jumpVisitorIinvitation() {
wx.navigateTo({
url: '/pages/meeting/visitorIinvitation/list/list',
}) })
}, },

View File

@ -7,7 +7,7 @@
<view class="title">会议预约记录</view> <view class="title">会议预约记录</view>
<van-icon class="goImg" name="share" size="80rpx" color="#ffffff"/> <van-icon class="goImg" name="share" size="80rpx" color="#ffffff"/>
</view> </view>
<view class="item"> <view class="item" bind:tap="jumpVisitorIinvitation">
<van-icon name="manager" size="80rpx" color="#ffffff"/> <van-icon name="manager" size="80rpx" color="#ffffff"/>
<view class="title">访客预约记录</view> <view class="title">访客预约记录</view>
<van-icon class="goImg" name="share" size="80rpx" color="#ffffff"/> <van-icon class="goImg" name="share" size="80rpx" color="#ffffff"/>