generated from weChat/xcx_temp
64 lines
2.8 KiB
Plaintext
64 lines
2.8 KiB
Plaintext
<view style="text-align: center; color: #b9b9b9" wx:if="{{pageLoading}}">
|
|
<t-loading theme="circular" size="40rpx" text="加载中..." inherit-color />
|
|
</view>
|
|
|
|
<view class="home-page-header">
|
|
<!-- 公告 -->
|
|
<!-- <view class="notice-container ">
|
|
<view wx:for="{{noticeList}}">
|
|
<t-notice-bar class="notice-bar" visible="{{item.visible}}" prefixIcon="null" marquee="{{marquee}}" content="{{item.noticeContent}}">
|
|
<view slot="prefix-icon" class="notice-title">
|
|
<t-icon class="notice-icon" name="error-circle-filled"></t-icon>
|
|
<view>
|
|
{{item.noticeTitle}}
|
|
</view>
|
|
</view>
|
|
</t-notice-bar>
|
|
</view>
|
|
</view> -->
|
|
<!-- 轮播图 -->
|
|
<!-- <view class="swiper-wrap">
|
|
<t-swiper wx:if="{{imgSrcs.length > 0}}" current="{{current}}" autoplay="{{autoplay}}" duration="{{duration}}" interval="{{interval}}" navigation="{{navigation}}" imageProps="{{swiperImageProps}}" list="{{imgSrcs}}" />
|
|
</view> -->
|
|
<!-- 搜索框 -->
|
|
<view class="search">
|
|
<t-search t-class-input="t-search__input" t-class-input-container="t-search__input-container" placeholder="搜索关键词" leftIcon="" bind:submit='search'>
|
|
<t-icon slot="left-icon" prefix="wr" name="search" size="40rpx" color="#bbb" />
|
|
</t-search>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="home-page-container">
|
|
<!-- 筛选 -->
|
|
<t-dropdown-menu>
|
|
<t-dropdown-item options="{{product.options}}" value="{{product.value}}" bindchange="onChange" />
|
|
<t-dropdown-item options="{{sorter.options}}" default-value="{{sorter.value}}" bindchange="onChangeOrder"/>
|
|
</t-dropdown-menu>
|
|
<!-- 列表渲染 -->
|
|
<view class="table-data-list-box">
|
|
|
|
<view class="table-data-list-item-box" bind:tap="gotoDetail" data-id="{{item.tableDataId}}" wx:for="{{tableDataList}}" wx:for-item="item" wx:for-index="index">
|
|
<view class="table-data-list-item">
|
|
<view class="title w1">{{item.tableDataProcurementContent}}</view>
|
|
<view class="price-box">
|
|
<view class="price-title">中标价格:</view>
|
|
<price wx:if="{{item.tableDataBidWinningPrice !== 0}}" priceUnit="yuan" wr-class="price-class" symbol="" price="{{item.tableDataBidWinningPrice}}" fill="true" decimalSmaller />
|
|
<view wx:else class="price-class">价格待定</view>
|
|
</view>
|
|
<view class="time-box">
|
|
<view class="time-text">{{item.tableDataDate}}</view>
|
|
<view class="time-line"> - </view>
|
|
<view class="time-text">{{item.tableDataDeadline}}</view>
|
|
</view>
|
|
<view class="tag-box">
|
|
<t-tag class="tag" variant="light" wx:for="{{item.productsInvolvedName}}" wx:for-item="item" wx:for-index="index">{{item}}</t-tag>
|
|
</view>
|
|
<!-- <van-button wx:if="true" class="btn" type="info" round block>查看详情</van-button> -->
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<t-toast id="t-toast" /> |