20 lines
994 B
Plaintext
20 lines
994 B
Plaintext
<view class="home-page-header">
|
|
<view class="swiper-wrap">
|
|
<t-swiper wx:if="{{imgSrcs.length > 0}}" current="{{current}}" autoplay="{{autoplay}}" duration="{{duration}}" interval="{{interval}}" navigation="{{navigation}}">
|
|
<t-swiper-item wx:for="{{imgSrcs}}" wx:key="index">
|
|
<t-image src="{{item.img}}" t-class="t-image__swiper" data-item="{{item}}" />
|
|
</t-swiper-item>
|
|
</t-swiper>
|
|
</view>
|
|
</view>
|
|
<view class="home-page-container">
|
|
<!-- <t-button bindtap="textButton"></t-button> -->
|
|
<t-image t-class="searich_btn" shape="round" mode="heightFix" src="/images/search.jpg" bind:tap="uploadPicture" />
|
|
</view>
|
|
<!-- <view class="home-page-ad"></view> -->
|
|
<t-dialog visible="{{loadingDialog}}" cancel-btn="取消操作" bind:cancel="onCloseDialog">
|
|
<view slot="content">
|
|
<t-loading t-class="dialog-content" theme="circular" size="200rpx" class="large" />
|
|
<view class="dialog-text">服务器正在拼命计算,请稍后...</view>
|
|
</view>
|
|
</t-dialog> |