闫增涛
2024-04-30 dc934dfd63fecff84d0bf996418e041b9bd4ea59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!--pages/bookExhibitionList/index.wxml-->
 
<!-- 弹出框 禁止 -->
 
<import src="index.skeleton.wxml" />
<template is="skeleton" wx:if="{{loading}}" />
 
<view wx:if="{{!loading}}">
  <t-toast id="t-toast" />
  <view class="outsideBigTitleBox">
    <view class="bigTitleBox">
      <view style="width: 100%; height: {{barHeight}}px; "></view>
      <view
        class="nacigationBar"
        style="width: 70%; height: {{navBarHeight}}px;"
      >
        <view>
          <t-icon
            name="chevron-left"
            size="30"
            data-name="{{item}}"
            bind:click="goBack"
          />
        </view>
        <view class="example-search">
          <t-search
            model:value="{{value}}"
            placeholder="请输入书展名称"
            bind:submit="onSearchSubmit"
          />
        </view>
      </view>
    </view>
 
    <view class="outsideMenuBox">
      <view class="menuBox">
        <t-dropdown-menu>
          <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>
          <t-dropdown-item
            disabled="{{disabledSort}}"
            options="{{sorter.options}}"
            default-value="{{sorter.value}}"
            bindchange="onSort"
          />
        </t-dropdown-menu>
      </view>
    </view>
  </view>
  <view class="assembleContent">
    <view class="titleBox">
      <view class="frameBox"></view>
      <view class="titleTextBox">
        <image
          src="/static/images/bookExhibitionList/zhuantitaolun.png"
          mode="aspectFit"
        />
      </view>
    </view>
 
    <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="暂无数据" />
        </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="imageBox">
            <view></view>
            <image wx:if="{{item.icon}}" src="{{item.icon}}" mode="aspectFit" />
            <image
              wx:else
              src="/static/images/bookExhibitionList/banner.png"
              mode="aspectFit"
            />
          </view>
          <view class="textBox" title="{{item.subtitleName}}">
            <text>{{item.subtitleName}}</text></view
          >
        </view>
      </view>
      <view class="bottom-box" wx:if="{{bookExhibitionList.length }}">
        <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>