ai-recommend.wxml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!-- pages/recommendation/recommendation.wxml -->
  2. <view class="container">
  3. <!-- 加载状态 -->
  4. <block wx:if="{{loading}}">
  5. <view class="loading-container">
  6. <view class="loading-animation">
  7. <view class="dot dot1"></view>
  8. <view class="dot dot2"></view>
  9. <view class="dot dot3"></view>
  10. </view>
  11. <text class="loading-text">AI正在为您生成个性化推荐方案...</text>
  12. </view>
  13. </block>
  14. <!-- 错误状态 -->
  15. <block wx:if="{{error}}">
  16. <view class="error-container">
  17. <image class="error-icon" src="/images/error-icon.png"></image>
  18. <text class="error-title">哎呀,出错了</text>
  19. <text class="error-message">{{error}}</text>
  20. <button class="retry-btn" bindtap="retry">重新生成</button>
  21. </view>
  22. </block>
  23. <!-- 推荐内容 -->
  24. <block wx:if="{{recommendation}}">
  25. <view class="recommendation-card">
  26. <view class="card-header">
  27. <text class="card-title">AI智能推荐</text>
  28. </view>
  29. <view class="card-content">
  30. <view class="recommendation-text">{{recommendation}}</view>
  31. </view>
  32. </view>
  33. </block>
  34. </view>