key1_beacon_xcx/pages/home/home.wxml
2023-11-22 12:17:32 +08:00

64 lines
2.6 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" bind:tap="navToSearchPage">
<t-search t-class-input="t-search__input" t-class-input-container="t-search__input-container" placeholder="搜索关键词" leftIcon="" >
<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}}" />
</t-dropdown-menu>
<!-- 列表渲染 -->
<view class="table-data-list-box">
<view class="table-data-list-item-box" bind:tap="gotoDetail">
<view class="table-data-list-item">
<view class="title w1">渤银理财理财分销对接代销系统采购项目</view>
<view class="price-box">
<view class="price-title">中标价格:</view>
<price wx:if="true" priceUnit="yuan" wr-class="price-class" symbol="" price="99" fill="true" decimalSmaller />
<view wx:else class="price-class">价格待定</view>
</view>
<view class="time-box">
<view class="time-text">2023-11-18</view>
<view class="time-line"> - </view>
<view class="time-text">2023-12-20</view>
</view>
<view class="tag-box">
<t-tag class="tag" variant="light">房产</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" />