123456789101112131415161718192021222324252627 |
- <!--components/loading/index.wxml-->
- <view class="loading-container" bindtap="{{showExploreButton ? 'goToIndexPage' : ''}}">
- <!-- 进度条加载页面 -->
- <view class="car-loading" wx:if="{{showProgressBar}}">
- <view class="car-container">
- <view class="car"></view>
- </view>
- <view class="progress-container">
- <image src="https://swkz-1332577016.cos.ap-guangzhou.myqcloud.com/imgs/loading/process.png" class="progress-bg" mode="widthFix" />
- <view class="custom-progress-bar">
- <view class="progress-fill" style="width: {{progress}}%"></view>
- </view>
- <view class="progress-text">{{progress}}%</view>
- </view>
- </view>
-
- <!-- Logo加载页面 -->
- <view wx:if="{{showLogo}}" class="logo-container">
- <view class="logo"></view>
- <view wx:if="{{showExploreButton}}" class="explore-button" bindtap="goToIndexPage">
- <view class="explore-line-left"></view>
- 开始探索
- <view class="explore-line-right"></view>
- </view>
- </view>
- </view>
|