| | |
| | | <view class="project-info"> |
| | | <view class="project-header"> |
| | | <text class="project-name">{{project.projectName || '未命名项目'}}</text> |
| | | <view class="project-status" wx:if="{{project.status}}"> |
| | | <text class="status-text status-{{project.statusType}}">{{project.statusText}}</text> |
| | | <view class="review-count" wx:if="{{project.ratingCount !== undefined}}"> |
| | | <text class="review-count-label">评审次数:</text> |
| | | <text class="review-count-value">{{project.ratingCount}}</text> |
| | | </view> |
| | | </view> |
| | | |
| | |
| | | </view> |
| | | |
| | | <view class="project-actions"> |
| | | <view |
| | | class="review-btn" |
| | | bindtap="goToReviewDetail" |
| | | data-project="{{project}}" |
| | | > |
| | | <text class="btn-text">评审</text> |
| | | </view> |
| | | <view |
| | | class="review-btn" |
| | | bindtap="goToReviewDetail" |
| | | data-activity-player-id="{{project.activityPlayerId || project.id}}" |
| | | > |
| | | <text class="btn-text">评审</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </view> |
| | |
| | | <text class="load-more-text" wx:else>加载中...</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </view> |