mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 18:59:36 +08:00
58 lines
2.3 KiB
Plaintext
58 lines
2.3 KiB
Plaintext
<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> |