SelfRidicule 32416a068c 1
2024-08-27 14:47:34 +08:00

58 lines
2.3 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="containerView public">
<!-- 顶部标题信息 -->
<view class="topHead">
<view class="name">{{address.address}}</view>
<!-- <view class="address">{{address.address}}</view> -->
</view>
<!-- 地图 -->
<map class="myMap" latitude="{{mapData.latitude}}" longitude="{{mapData.longitude}}" markers="{{mapData.markers}}" show-location bindtap="openMap"></map>
<!-- 邀请人信息 -->
<view class="personView">
<view class="label">发起人</view>
<view class="item">
<image class="headImg" src="{{detail.avatar ? IMG_NAME + detail.avatar : IMG_NAME + '/profile/static/user/headImg.png'}}" mode="aspectFill"></image>
<view class="dataView">
<view class="name">{{detail.userName}}</view>
<view class="phone">{{detail.phone}}</view>
</view>
</view>
</view>
<!-- 其他信息 -->
<view class="otherView">
<view class="title">会议主题</view>
<view class="content">{{detail.title}}</view>
</view>
<view class="otherView">
<view class="title">会议地点</view>
<view class="content">{{detail.roomContent.address}}</view>
</view>
<view class="otherView">
<view class="title">会议时间</view>
<view class="content">{{detail.timeSlot}}</view>
</view>
<!-- 参与人员 -->
<view class="otherView">
<view class="title">参会人员({{joinPersonList.length}}/{{detail.reservationPersonList.length}}</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>
<!-- 接受邀请 -->
<view class="submitBtn" wx:if="{{participateShow}}" bind:tap="participateMeeting">接受邀请</view>
<!-- 点击开门 -->
<view class="submitBtn" wx:if="{{openDoorShow}}" bind:tap="openDoor">返回主页</view>
<!-- 消息提示 -->
<van-notify id="van-notify" />
</view>