27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
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> -->
|
|
<view class="container">
|
|
<t-image t-class="search_img" shape="round" mode="heightFix" src="/images/check.png" />
|
|
</view>
|
|
<view class="container">
|
|
<button class="search_btn" theme="default" size="large" bind:tap="uploadPicture" block>
|
|
<t-icon t-class="" data-name="photo" name="photo" size="48rpx" />拍照识别
|
|
</button>
|
|
</view>
|
|
</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> |