<!--pages/bookExhibitionList/index.wxml-->
|
|
<!-- 弹出框 禁止 -->
|
<t-toast id="t-toast" />
|
|
|
<view class="example-search">
|
<t-search model:value="{{value}}" placeholder="请输入关键词/书目/ISBN/作者" />
|
</view>
|
|
|
|
|
|
|
|
|
<view class="menuBox">
|
<t-dropdown-menu class="classification">
|
|
<t-dropdown-item options="{{product.options}}" value="{{product.value}}" bindchange="onChange" />
|
<t-dropdown-item label="重点项目" options="{{multipleSelect.options}}" value="{{multipleSelect.value}}" bindchange="handleMultipleSelect" multiple bind:confirm="handleConfirm" bind:reset="handleReset" />
|
|
|
|
</t-dropdown-menu>
|
<view class="sortBox">
|
<text>排序</text>
|
<view class="iconBox">
|
<t-icon class="swapRight" name="swap-right" size="48rpx" bind:click="onSwapRight" />
|
<t-icon class="swapLeft" name="swap-right" size="48rpx" bind:click="onSwapLeft" />
|
</view>
|
</view>
|
</view>
|
|
<view class="titleBox">
|
<view class="frameBox"></view> <text class="titleTextBox"> 线上书展</text>
|
</view>
|
<view class="outside">
|
|
<view class="contentBox" wx:for="{{bookExhibitionList}}" wx:key="index" wx:for-item="item" wx:for-index="index" bindtap="onBookExhibitionDetails" data-item="{{item}}">
|
<image wx:if="{{item.icon}}" src="{{item.icon}}" mode="" />
|
<image wx:else="" src="./img/banner.png" mode="" />
|
<view class="textBox"> <text>{{item.name}}</text></view>
|
</view>
|
|
</view>
|