12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--pages/course/course.wxml-->
- <t-pull-down-refresh value="{{enable}}" loadingTexts="{{['下拉刷新', '松手刷新', '正在刷新', '刷新完成']}}" bind:refresh="onRefresh"
- bind:scroll="onScroll">
- <view class="container">
- <!-- <button bindtap='openHost'>leader</button>
- <button bindtap='openCustomer'>customer</button> -->
- <view class="search_con">
- <view class="search">
- <view class='icon'>
- <view class='iconfont iconsousuo'></view>
- </view>
- <input placeholder="搜索博物馆、展览" />
- </view>
- </view>
- <view class="list">
- <view class="item" wx:for="{{testData}}" wx:key="index" bindtap="handleVRDetail">
- <image class="cover" mode="scaleToFill"
- src="https://ossxiaoan.4dage.com/720yun_fd_manage/fd720_FARRQblYc/vtour/panos/fd720_FARRQblYc.tiles/thumb.jpg">
- </image>
- <view class="title" wx:if="{{index %2 ===0}}">灵隐飞来峰-大门票{{index}}</view>
- <view class="title" wx:else>湖北省博物馆金牌讲师2H真人深度讲解含无线耳麦</view>
- <div class="sub_cotnainer">
- <text class="sub_title" wx:if="{{index %2 ===0}}">余老师带你飞-</text>
- <text class="sub_title" wx:else> 陈老师深入挖掘故宫的陈老师深入挖掘故宫的陈老师深入挖掘故宫的</text>
- <view class="sub_time">
- <image class="time" src="../../imgs/time.png"></image>
- <text>45分钟</text>
- </view>
- </div>
- <view class="price">
- 9.05元
- </view>
- </view>
- </view>
- <t-back-top text="顶部" scroll-top="{{scrollTop}}" visibility-height="{{200}}" />
- </view>
- </t-pull-down-refresh>
|