闫增涛
2025-01-22 2aaa9e8dc8bf91849110347fc772773a8bceb325
pages/bookExhibitionList/index.wxml
@@ -10,12 +10,26 @@
  <view class="outsideBigTitleBox">
    <view class="bigTitleBox">
      <view style="width: 100%; height: {{barHeight}}px; "></view>
      <view class="nacigationBar" style="width: 70%; height: {{navBarHeight}}px;">
        <view class="titleIconBox">
          <t-icon name="chevron-left" size="30" data-name="{{item}}" bind:click="goBack" />
      <view
        class="nacigationBar"
        style="width: 70%; height: {{navBarHeight}}px;"
      >
        <view class="titleIconBox back-icon" >
          <!-- <t-icon name="chevron-left" size="30" data-name="{{item}}" bind:click="goBack" /> -->
          <image
            src="/static/images/digitalTextbooks/chevron-left.png"
            bind:tap="goBack"
            mode="aspectFit"
          />
        </view>
        <view class="example-search">
          <t-search class="navBar-search" shape="round" model:value="{{value}}" placeholder="请输入书展名称" bind:submit="onSearchSubmit" />
          <t-search
            class="navBar-search"
            shape="round"
            model:value="{{value}}"
            placeholder="请输入书展名称"
            bind:submit="onSearchSubmit"
          />
        </view>
      </view>
    </view>
@@ -23,11 +37,29 @@
    <view class="outsideMenuBox">
      <view class="menuBox">
        <t-dropdown-menu>
          <t-dropdown-item options="{{product.options}}" default-value="{{product.value}}" bindchange="onChange" />
          <t-dropdown-item
            options="{{product.options}}"
            default-value="{{product.value}}"
            bindchange="onChange"
          />
          <!-- disabled="{{keynoteDisabled}}" -->
          <t-dropdown-item label=" 重点项目" disabled="{{disbaleProject}}" options="{{multipleSelect.options}}" bindchange="handleMultipleSelect" multiple bind:confirm="handleConfirm" bind:reset="handleReset" value="{{multipleSelect.value}}">
          <t-dropdown-item
            label=" 获奖情况"
            disabled="{{disbaleProject}}"
            options="{{multipleSelect.options}}"
            bindchange="handleMultipleSelect"
            multiple
            bind:confirm="handleConfirm"
            bind:reset="handleReset"
            value="{{multipleSelect.value}}"
          >
          </t-dropdown-item>
          <t-dropdown-item disabled="{{disabledSort}}" options="{{sorter.options}}" default-value="{{sorter.value}}" bindchange="onSort" />
          <t-dropdown-item
            disabled="{{disabledSort}}"
            options="{{sorter.options}}"
            default-value="{{sorter.value}}"
            bindchange="onSort"
          />
        </t-dropdown-menu>
      </view>
    </view>
@@ -36,21 +68,40 @@
    <view class="titleBox">
      <view class="frameBox"></view>
      <view class="titleTextBox">
        <image src="/static/images/bookExhibitionList/zhuantitaolun.png" mode="aspectFit" />
        <image
          src="/static/images/bookExhibitionList/zhuantitaolun.png"
          mode="aspectFit"
        />
      </view>
    </view>
    <scroll-view scroll-y="{{true}}" class="scrollViewBox" bindscrolltolower="onScrollToLower">
    <scroll-view
      scroll-y="{{true}}"
      class="scrollViewBox"
      bindscrolltolower="onScrollToLower"
    >
      <view class="outside">
        <view wx:if="{{!bookExhibitionList.length }}" class="noData">
          <!-- <t-empty icon="folder-open" description="暂无数据" /> -->
          <empty />
        </view>
        <view class="contentBox" wx:for="{{bookExhibitionList}}" wx:key="index" wx:for-item="item" wx:for-index="index" data-item="{{item}}" bind:tap="onBookExhibitionDetails">
        <view
          class="contentBox"
          wx:for="{{bookExhibitionList}}"
          wx:key="index"
          wx:for-item="item"
          wx:for-index="index"
          data-item="{{item}}"
          bind:tap="onBookExhibitionDetails"
        >
          <view class="imageBox">
            <view></view>
            <image wx:if="{{item.icon}}" src="{{item.icon}}" mode="aspectFit" />
            <image wx:else src="/static/images/bookExhibitionList/banner.png" mode="aspectFit" />
            <image
              wx:else
              src="/static/images/bookExhibitionList/banner.png"
              mode="aspectFit"
            />
          </view>
          <view class="textBox" title="{{item.subtitleName}}">
            <text>{{item.subtitleName}}</text>
@@ -58,10 +109,15 @@
        </view>
      </view>
      <view class="bottom-box" wx:if="{{bookExhibitionList.length }}">
        <t-loading theme="circular" size="40rpx" class="wrapper" wx:if="{{isMore == true}}" />
        <t-loading
          theme="circular"
          size="40rpx"
          class="wrapper"
          wx:if="{{isMore == true}}"
        />
        <text wx:if="{{isMore == false}}">没有更多了</text>
      </view>
      <!-- <Select prop-array='{{selectArray}}'></Select> -->
    </scroll-view>
  </view>
</view>
</view>