描述:邀请页面修改

This commit is contained in:
SelfRidicule 2024-06-28 09:15:09 +08:00
parent 6042dcb485
commit 712b91a4d2
2 changed files with 5 additions and 5 deletions

View File

@ -166,7 +166,7 @@ Page({
openDoor() {
let _this = this;
wx.reLaunch({
url: "/pages/meeting/accessControl/accessControl",
url: "/pages/index/index",
})
},

View File

@ -27,17 +27,17 @@
<view class="content">{{detail.title}}</view>
</view>
<view class="otherView">
<view class="title">会地点</view>
<view class="title">会地点</view>
<view class="content">{{detail.roomContent.address}}</view>
</view>
<view class="otherView">
<view class="title">会时间</view>
<view class="title">会时间</view>
<view class="content">{{detail.timeSlot}}</view>
</view>
<!-- 参与人员 -->
<view class="otherView">
<view class="title">参与人员</view>
<view class="title">参与人员{{joinPersonList.length}}/{{detail.personNum}}</view>
<view class="content">
<view class="joinView">
<view class="joinPersonView" wx:for="{{joinPersonList}}" wx:key="*this">
@ -51,7 +51,7 @@
<!-- 接受邀请 -->
<view class="submitBtn" wx:if="{{participateShow}}" bind:tap="participateMeeting">接受邀请</view>
<!-- 点击开门 -->
<view class="submitBtn" wx:if="{{openDoorShow}}" bind:tap="openDoor">点击开门</view>
<view class="submitBtn" wx:if="{{openDoorShow}}" bind:tap="openDoor">返回主页</view>
<!-- 消息提示 -->
<van-notify id="van-notify" />