mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 14:19:38 +08:00
64 lines
3.1 KiB
Plaintext
64 lines
3.1 KiB
Plaintext
<view class="containerView">
|
||
<!-- 轮播图 -->
|
||
<swiper class='swiper-box' indicator-dots autoplay interval="3000" duration="1000" circular='true'>
|
||
<swiper-item wx:for="{{bannerList}}" wx:key="index">
|
||
<image class="img" src="{{IMG_NAME + item.bg}}" mode="aspectFill"></image>
|
||
</swiper-item>
|
||
</swiper>
|
||
|
||
<!-- 会议室详细信息 -->
|
||
<view class="roomView">
|
||
<!-- 类型信息 -->
|
||
<view class="typeView">
|
||
<view class="typeItem">
|
||
<view class="name">所在楼层</view>
|
||
<view class="value">12层</view>
|
||
</view>
|
||
<view class="typeItem">
|
||
<view class="name">空间面积</view>
|
||
<view class="value">12345m</view>
|
||
</view>
|
||
<view class="typeItem">
|
||
<view class="name">办公面积</view>
|
||
<view class="value">550m</view>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 文字内容 -->
|
||
<view class="content {{contentSwichFLag ? 'hidden' : ''}}">
|
||
在组件上使用 wx:for 控制属性绑定一个数组,即可使用数组中各项的数据重复渲染该组件。默认数组的当前项的下标变量名默认为 index,数组当前项的变量名默认为 item在组件上使用 wx:for 控制属性绑定一个数组,即可使用数组中各项的数据重复渲染该组件。默认数组的当前项的下标变量名默认为 index,数组当前项的变量名默认为 item在组件上使用 wx:for 控制属性绑定一个数组,即可使用数组中各项的数据重复渲染该组件。默认数组的当前项的下标变量名默认为 index,数组当前项的变量名默认为 item在组件上使用 wx:for 控制属性绑定一个数组,即可使用数组中各项的数据重复渲染该组件。默认数组的当前项的下标变量名默认为 index,数组当前项的变量名默认为 item
|
||
</view>
|
||
<view class="contentSwichBtn" bind:tap="contentSwich">
|
||
{{contentSwichFLag ? '展开' : '收起'}}
|
||
<van-icon wx:if="{{contentSwichFLag}}" name="arrow-down" />
|
||
<van-icon wx:if="{{!contentSwichFLag}}" name="arrow-up" />
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 设施 -->
|
||
<view class="facilitiesView" bind:tap="jumpMeetingFacilities">
|
||
<view class="leftLineTitle">空间设施</view>
|
||
<view class="itemView">
|
||
<view class="singleItem" wx:for="{{10}}">
|
||
<van-icon name="after-sale" size="40px" />
|
||
<view class="name">VIP</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 价格 -->
|
||
<view class="priceView">
|
||
<view class="leftLineTitle">价格</view>
|
||
<view class="content">¥ 200.00/半小时 起</view>
|
||
</view>
|
||
|
||
<!-- 地图 -->
|
||
<view class="mapView">
|
||
<view class="leftLineTitle">空间周边</view>
|
||
<map class="myMap" latitude="{{mapData.latitude}}" longitude="{{mapData.longitude}}" markers="{{mapData.markers}}" show-location></map>
|
||
</view>
|
||
|
||
<!-- 预约 -->
|
||
<view class="reservationBtn">会议预约</view>
|
||
|
||
</view> |