| 123456789101112131415161718192021222324 | <!-- 搜索 --><My_SearchInputBox flexd='{{true}}' bind:searchQuery="searchQuery" route="product" fisadministrator="{{fisadministrator}}" bindisOnShow='isOnShow'></My_SearchInputBox><!-- 列表 --><My_GeneralTemplate padBot="20rpx">    <view class="product_list">        <!-- tabs -->        <van-tabs swipeable active="{{ active }}" bind:change="tabsChange" color="#4BBECF" title-active-color='#4BBECF'>            <van-tab title="全部">            </van-tab>            <van-tab title="上架中">            </van-tab>            <van-tab title="已下架">            </van-tab>        </van-tabs>        <!-- 占位 -->        <view style="height: 30rpx;"></view>        <!-- 滚动区域 -->        <scroll-view scroll-y="true" style="max-height: 60vh;" scroll-top='500rpx' bindscrolltolower="scrolltolower">            <!-- 产品列表 -->            <My_MembersAndProducts wx:for="{{productList}}" wx:key="{{item.tagents_productid}}" bind:changeMessage="changeProductMessage" data-index="{{index}}" attinfos="{{item.attinfos}}" imgSize="120rpx" radius="8rpx" title="{{item.fprodname}}" twoRow="{{item.fintroduction}}" threeRow="{{item.ftag}}" fisadministrator="{{fisadministrator}}"></My_MembersAndProducts>            <My_pageReachBottom dummyStatus="{{productList.length>=1}}" loadMore="{{pageNumber>=pageTotal}}"></My_pageReachBottom>        </scroll-view>    </view></My_GeneralTemplate>
 |