63 lines
2.4 KiB
Plaintext
Raw Normal View History

2024-03-01 10:30:46 +08:00
<view class="containerView public">
<!-- 顶部标题信息 -->
<view class="topHead">
2024-03-06 18:09:17 +08:00
<view class="name">创智中心大厦</view>
<view class="address">{{address.address}}</view>
2024-03-01 10:30:46 +08:00
</view>
<!-- 地图 -->
2024-03-06 20:22:33 +08:00
<map class="myMap" latitude="{{mapData.latitude}}" longitude="{{mapData.longitude}}" markers="{{mapData.markers}}" show-location bindtap="openMap"></map>
2024-03-01 10:30:46 +08:00
<!-- 邀请人信息 -->
<view class="personView">
2024-03-06 18:09:17 +08:00
<view class="label">发起人</view>
2024-03-01 10:30:46 +08:00
<view class="item">
2024-03-06 20:22:33 +08:00
<image class="headImg" src="{{detail.avatar ? IMG_NAME + detail.avatar : IMG_NAME + '/profile/static/user/headImg.png'}}" mode="aspectFill"></image>
2024-03-01 10:30:46 +08:00
<view class="dataView">
2024-03-06 18:09:17 +08:00
<view class="name">{{detail.userName}}</view>
<view class="phone">{{detail.phone}}</view>
2024-03-01 10:30:46 +08:00
</view>
</view>
</view>
<!-- 其他信息 -->
2024-03-06 18:09:17 +08:00
<view class="otherView">
<view class="title">会议主题</view>
<view class="content">{{detail.title}}</view>
</view>
2024-03-01 10:30:46 +08:00
<view class="otherView">
<view class="title">会面地点</view>
2024-03-06 18:09:17 +08:00
<view class="content">{{detail.roomContent.address}}</view>
2024-03-01 10:30:46 +08:00
</view>
<view class="otherView">
<view class="title">会面时间</view>
2024-03-06 18:09:17 +08:00
<view class="content">{{detail.timeSlot}}</view>
2024-03-01 10:30:46 +08:00
</view>
2024-03-28 10:48:44 +08:00
<!-- 参与人员 -->
<view class="otherView">
<view class="title">参与人员</view>
<view class="content">
<view class="joinView">
<view class="joinPersonView" wx:for="{{joinPersonList}}" wx:key="*this">
<image class="img" src="{{item.avatar ? IMG_NAME + item.avatar : IMG_NAME + '/profile/static/user/headImg.png'}}" mode="aspectFill"></image>
<view class="name">{{item.userName}}</view>
</view>
</view>
</view>
</view>
2024-03-06 20:22:33 +08:00
<!-- 授权登录 -->
<view class="submitBtn" wx:if="{{authorizationShow}}">授权登录
<button class="loginBtn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber"></button>
</view>
<!-- 接受邀请 -->
2024-03-06 21:38:07 +08:00
<view class="submitBtn" wx:if="{{participateShow}}" bind:tap="participateMeeting">接受邀请</view>
2024-03-06 20:22:33 +08:00
<!-- 点击开门 -->
2024-03-06 21:38:07 +08:00
<view class="submitBtn" wx:if="{{openDoorShow}}" bind:tap="openDoor">点击开门</view>
<!-- 消息提示 -->
<van-notify id="van-notify" />
2024-03-01 10:30:46 +08:00
</view>