123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!--pages/exhibition/index.wxml-->
- <view class="exhibition-container">
- <!-- 轮播图 -->
- <view class="carousel-section">
- <!-- <swiper class="carousel" indicator-dots="{{true}}" autoplay="{{true}}" interval="3000" duration="500"> -->
- <navigator hover-class='none' url="https://www.4dmodel.com/SuperTwoCustom/KLMYscene/?m=SG-alDn3FU4jQ8" class='fdkz-card'>
- <view class="carousel">
- <image class="carousel-image" src="https://klmybwg.4dage.com/mini/wxImg/zhanlan.png" mode="aspectFill"></image>
- <!-- 线上观展标识 -->
- <view class="online-exhibition" bindtap="onOnlineExhibitionTap">
- <image class="online-icon" src="https://klmybwg.4dage.com/mini/wxImg/exhibition/online-kz.png" mode="aspectFit"></image>
- <text class="online-text">线上观展</text>
- </view>
- </view>
- <!-- </swiper> -->
- </navigator>
- </view>
- <!-- 分类选择 -->
- <view class="category-section">
- <view class="category-tabs">
- <view class="category-tab {{selectedType == 1 ? 'active' : ''}}" bindtap="selectCategory" data-type="1">
- <image class="category-icon" src="https://klmybwg.4dage.com/mini/wxImg/exhibition/icon_in.png" mode="aspectFit"></image>
- <text>室内展览</text>
- </view>
- <view class="category-tab {{selectedType == 2 ? 'active' : ''}}" bindtap="selectCategory" data-type="2">
- <image class="category-icon" src="https://klmybwg.4dage.com/mini/wxImg/exhibition/icon_out.png" mode="aspectFit"></image>
- <text>室外展览</text>
- </view>
- </view>
- </view>
- <!-- 展览列表 -->
- <view class="exhibition-list">
- <view class="exhibition-item" wx:for="{{exhibitionList}}" wx:key="exhibitId" bindtap="onExhibitionTap" data-item="{{item}}">
- <image class="exhibition-image" src="{{item.img}}" mode="aspectFill"></image>
- <view class="exhibition-content">
- <text class="exhibition-title">{{item.title || '记忆与传承的艺术史'}}</text>
- </view>
- </view>
- </view>
- <!-- 加载状态 -->
- <view class="loading-section" wx:if="{{loading}}">
- <text>加载中...</text>
- </view>
- <!-- 没有更多数据 -->
- <view class="no-more-section" wx:if="{{!hasMore && exhibitionList.length > 0}}">
- <text>没有更多数据了</text>
- </view>
- <!-- 空状态 -->
- <view class="empty-section" wx:if="{{exhibitionList.length === 0 && !loading}}">
- <text>暂无展览信息</text>
- </view>
- </view>
|