| | |
| | | </view> |
| | | </view> |
| | | |
| | | <!-- 我的审核区域 - 仅员工可见 --> |
| | | <view class="review-section" wx:if="{{isEmployee}}"> |
| | | <view class="section-header"> |
| | | <text class="section-title">我的审核</text> |
| | | <view class="review-action-btn" bindtap="goToEmployeeReviewPage"> |
| | | <text class="action-text">审核</text> |
| | | <text class="action-arrow">></text> |
| | | </view> |
| | | </view> |
| | | |
| | | <view class="review-stats"> |
| | | <view class="stat-item"> |
| | | <text class="stat-number">{{employeeReviewStats.pendingCount || 0}}</text> |
| | | <text class="stat-label">待审核</text> |
| | | </view> |
| | | <view class="stat-divider"></view> |
| | | <view class="stat-item"> |
| | | <text class="stat-number">{{employeeReviewStats.approvedCount || 0}}</text> |
| | | <text class="stat-label">已审核</text> |
| | | </view> |
| | | <view class="stat-divider"></view> |
| | | <view class="stat-item"> |
| | | <text class="stat-number">{{employeeReviewStats.rejectedCount || 0}}</text> |
| | | <text class="stat-label">驳回</text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | |
| | | </view> |
| | | </view> |
| | | </view> |