bt-lcyd/pages/home/home.wxml

40 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

2022-06-14 10:56:41 +08:00
<view class="swiper-box">
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" >
<swiper-item class="swiper-item" wx:for="{{swiperList}}" wx:key="index">
<image src="{{requestIp}}route/file/downloadfile/true/{{item}}"></image>
</swiper-item>
</swiper>
</view>
<view class="link-container">
<view class="link-box" bindtap="goBook">
<image src="../../images/link-bg1.png"></image>
预约租赁
</view>
<view class="link-box" bindtap="goMatch">
<image src="../../images/link-bg2.png"></image>
赛事活动
</view>
<view class="link-box" bindtap="goNews">
<image src="../../images/link-bg3.png"></image>
科学健身
</view>
<view class="link-box" bindtap="goExercise">
<image src="../../images/link-bg4.png"></image>
体育新闻
</view>
</view>
<view class="venue-list">
<view class="venue-title" style="background: url(../../images/title-bg.png) no-repeat bottom left">场馆推荐</view>
<view class="venue-box" bindtap="goDetail" wx:for="{{venueList}}" data-id="{{item.venuesInfoId}}" wx:key="idx">
<view class="venue-pic">
<image src="{{requestIp}}route/file/downloadfile/true/{{item.venuePanorama}}" class="venue-img"></image>
</view>
<view class="venue-info">
<view class="venue-title">
<text class="venue-name">{{item.venueName}}</text>
</view>
<view class="venue-address">{{item.venuePosition}}</view>
</view>
</view>
</view>