mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-22 04:19:36 +08:00
45 lines
1.8 KiB
Plaintext
45 lines
1.8 KiB
Plaintext
<view class="containerView public">
|
|
|
|
<!-- 顶部标题信息 -->
|
|
<view class="topHead">
|
|
<view class="name">创智中心大厦</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="submitBtn" wx:if="{{authorizationShow}}">授权登录
|
|
<button class="loginBtn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber"></button>
|
|
</view>
|
|
<!-- 接受邀请 -->
|
|
<view class="submitBtn" wx:if="{{participateShow}}">接受邀请</view>
|
|
<!-- 点击开门 -->
|
|
<view class="submitBtn" wx:if="{{openDoorShow}}">点击开门</view>
|
|
</view> |