123456789101112131415161718192021222324252627282930313233343536373839 |
- <!-- pages/recommendation/recommendation.wxml -->
- <view class="container">
- <!-- 加载状态 -->
- <block wx:if="{{loading}}">
- <view class="loading-container">
- <view class="loading-animation">
- <view class="dot dot1"></view>
- <view class="dot dot2"></view>
- <view class="dot dot3"></view>
- </view>
- <text class="loading-text">AI正在为您生成个性化推荐方案...</text>
- </view>
- </block>
- <!-- 错误状态 -->
- <block wx:if="{{error}}">
- <view class="error-container">
- <image class="error-icon" src="/images/error-icon.png"></image>
- <text class="error-title">哎呀,出错了</text>
- <text class="error-message">{{error}}</text>
- <button class="retry-btn" bindtap="retry">重新生成</button>
- </view>
- </block>
- <!-- 推荐内容 -->
- <block wx:if="{{recommendation}}">
- <view class="recommendation-card">
- <view class="card-header">
- <text class="card-title">AI智能推荐</text>
- </view>
-
- <view class="card-content">
- <view class="recommendation-text">{{recommendation}}</view>
- </view>
-
-
- </view>
- </block>
- </view>
|