| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- <template>
- <view class="container">
- <!-- 顶部橙色统计卡 -->
- <view class="top-banner">
- <!-- 月份切换:箭头在背景框内紧跟文字 -->
- <view class="month-btn" @click="openMonthPicker">
- <text class="month-text">{{ selectedYear }}年{{ selectedMonth }}月 ▾</text>
- </view>
- <view class="stats-grid">
- <view class="stats-cell">
- <text class="stats-label">奖励订单</text>
- <text class="stats-num">3<text class="stats-unit">单</text></text>
- <view class="stats-divider"></view>
- <text class="stats-sub">累计 1258单</text>
- </view>
- <view class="stats-cell">
- <text class="stats-label">惩罚订单</text>
- <text class="stats-num">1<text class="stats-unit">单</text></text>
- <view class="stats-divider"></view>
- <text class="stats-sub">累计 12单</text>
- </view>
- <view class="stats-cell">
- <text class="stats-label">奖励金额</text>
- <text class="stats-num reward-num">2910.00</text>
- <view class="stats-divider"></view>
- <text class="stats-sub">累计 45800.00</text>
- </view>
- <view class="stats-cell">
- <text class="stats-label">惩罚金额</text>
- <text class="stats-num penalty-num">-15.00</text>
- <view class="stats-divider"></view>
- <text class="stats-sub">累计 350.00</text>
- </view>
- </view>
- </view>
- <!-- 标签 + 查看全部 -->
- <view class="list-header">
- <view class="tab-bar">
- <view
- class="tab-item"
- v-for="(tab, idx) in tabs"
- :key="idx"
- :class="{ active: activeTab === idx }"
- @click="switchTab(idx)"
- >
- <text>{{ tab }}</text>
- <view class="tab-line" v-if="activeTab === idx"></view>
- </view>
- </view>
- <view class="view-all-btn" @click="goToAll">
- <text class="view-all-text">查看全部 ›</text>
- </view>
- </view>
- <!-- 列表 -->
- <view class="record-list">
- <view class="record-item" v-for="(item, idx) in filteredList" :key="idx">
- <!-- 左侧图标 -->
- <view class="ri-icon" :class="item.amount > 0 ? 'ri-reward' : 'ri-penalty'">
- <text class="ri-icon-text">¥</text>
- </view>
- <!-- 内容 -->
- <view class="ri-content">
- <view class="ri-title-row">
- <text class="ri-date">{{ item.date }}</text>
- <text class="ri-title">{{ item.title }}</text>
- </view>
- <text class="ri-desc">{{ item.desc }}</text>
- </view>
- <!-- 右侧金额 + 状态 -->
- <view class="ri-right">
- <text class="ri-amount" :class="item.amount > 0 ? 'positive' : 'negative'">
- {{ item.amount > 0 ? '+' : '' }}{{ item.amount.toFixed(2) }}
- </text>
- <text class="ri-status" :class="item.statusClass">{{ item.status }}</text>
- </view>
- </view>
- <!-- 底部提示 -->
- <text class="more-hint">更多记录请点击上方的查看全部</text>
- </view>
- <!-- 月份选择器 -->
- <view class="picker-mask" v-if="showMonthPicker" @click="closeMonthPicker">
- <view class="picker-sheet" @click.stop>
- <!-- 顶部操作 -->
- <view class="picker-header">
- <text class="picker-cancel" @click="closeMonthPicker">取消</text>
- <text class="picker-title">选择时间</text>
- <text class="picker-confirm" @click="confirmMonthPicker">确定</text>
- </view>
- <!-- 年月两列 -->
- <view class="picker-body">
- <!-- 年 -->
- <scroll-view scroll-y class="picker-column" :scroll-top="yearScrollTop" @scroll="onYearScroll">
- <view style="height: 80rpx;"></view>
- <view
- class="picker-col-item"
- v-for="year in years"
- :key="year"
- :class="{ 'picker-selected': pickerYear === year }"
- @click="pickerYear = year"
- >{{ year }}年</view>
- <view style="height: 80rpx;"></view>
- </scroll-view>
- <!-- 选中高亮条 -->
- <view class="picker-highlight"></view>
- <!-- 月 -->
- <scroll-view scroll-y class="picker-column" :scroll-top="monthScrollTop" @scroll="onMonthScroll">
- <view style="height: 80rpx;"></view>
- <view
- class="picker-col-item"
- v-for="month in months"
- :key="month"
- :class="{ 'picker-selected': pickerMonth === month }"
- @click="pickerMonth = month"
- >{{ month }}月</view>
- <view style="height: 80rpx;"></view>
- </scroll-view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- tabs: ['全部', '奖励', '惩罚'],
- activeTab: 0,
- selectedYear: 2026,
- selectedMonth: 2,
- // 月份选择器状态
- showMonthPicker: false,
- pickerYear: 2026,
- pickerMonth: 2,
- years: [2021, 2022, 2023, 2024, 2025, 2026],
- months: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
- yearScrollTop: 0,
- monthScrollTop: 0,
- // 奖惩记录列表
- records: [
- { date: '09-01', title: '单量奖励', desc: '超140单', amount: 560, status: '待入账', statusClass: 'pending', type: 'reward' },
- { date: '08-01', title: '单量奖励', desc: '超470单', amount: 2050, status: '已入账', statusClass: 'credited', type: 'reward' },
- { date: '09-02', title: '超时扣款', desc: '订单#T982 超时30分钟', amount: -15, status: '已扣款', statusClass: 'deducted', type: 'penalty' },
- { date: '09-05', title: '高温补贴', desc: '8月份高温天气补贴', amount: 300, status: '已入账', statusClass: 'credited', type: 'reward' }
- ]
- };
- },
- computed: {
- filteredList() {
- if (this.activeTab === 0) return this.records;
- if (this.activeTab === 1) return this.records.filter(r => r.type === 'reward');
- return this.records.filter(r => r.type === 'penalty');
- }
- },
- methods: {
- switchTab(idx) { this.activeTab = idx; },
- openMonthPicker() {
- this.pickerYear = this.selectedYear;
- this.pickerMonth = this.selectedMonth;
- this.showMonthPicker = true;
- },
- closeMonthPicker() { this.showMonthPicker = false; },
- confirmMonthPicker() {
- this.selectedYear = this.pickerYear;
- this.selectedMonth = this.pickerMonth;
- this.closeMonthPicker();
- },
- goToAll() {
- uni.navigateTo({ url: '/pages/mine/rewards-all' });
- }
- }
- };
- </script>
- <style>
- page { background-color: #F7F8FA; }
- .container { min-height: 100vh; background-color: #F7F8FA; }
- /* 顶部橙色banner */
- .top-banner {
- background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
- padding: 20rpx 30rpx 36rpx;
- border-radius: 20rpx;
- margin: 20rpx 30rpx 0;
- box-shadow: 0 6rpx 20rpx rgba(255, 87, 34, 0.25);
- }
- .month-btn {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- margin-bottom: 20rpx;
- }
- /* 年月文字和箭头在同一个圆角背景框内 */
- .month-text {
- font-size: 24rpx;
- color: rgba(255,255,255,0.95);
- background-color: rgba(255,255,255,0.2);
- padding: 6rpx 14rpx;
- border-radius: 14rpx;
- }
- .stats-grid {
- display: flex;
- flex-wrap: wrap;
- gap: 16rpx;
- }
- .stats-cell {
- width: calc(50% - 8rpx);
- background-color: rgba(255,255,255,0.15);
- border-radius: 12rpx;
- padding: 20rpx 24rpx;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- }
- .stats-num {
- font-size: 38rpx;
- font-weight: bold;
- color: #fff;
- margin-bottom: 8rpx;
- }
- .stats-unit { font-size: 20rpx; font-weight: normal; }
- .stats-num.reward-num { color: #fff; }
- .stats-num.penalty-num { color: #FFF176; }
- .stats-label {
- font-size: 22rpx;
- color: rgba(255,255,255,0.85);
- margin-bottom: 8rpx;
- }
- /* 统计数字下方的分割线 */
- .stats-divider {
- height: 1rpx;
- background-color: rgba(255,255,255,0.3);
- margin-bottom: 10rpx;
- }
- .stats-sub { font-size: 20rpx; color: rgba(255,255,255,0.65); }
- /* 列表头:tab栏无底部外框线 */
- .list-header {
- display: flex;
- align-items: center;
- background-color: #fff;
- padding: 0 16rpx 0 30rpx;
- margin: 16rpx 30rpx 0;
- border-radius: 16rpx 16rpx 0 0;
- }
- .tab-bar { display: flex; flex: 1; }
- .tab-item {
- padding: 18rpx 16rpx 0;
- font-size: 28rpx;
- color: #999;
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- }
- .tab-item:first-child { padding-left: 0; }
- .tab-item.active { color: #FF9800; font-weight: bold; }
- /* 下划线用正常流,自然居中对齐文字 */
- .tab-line {
- width: 32rpx;
- height: 3rpx;
- background-color: #FF9800;
- border-radius: 2rpx;
- margin-top: 8rpx;
- align-self: center;
- }
- .view-all-btn { padding: 8rpx 0; margin-left: auto; }
- .view-all-text { font-size: 24rpx; color: #999; }
- /* 记录列表 */
- .record-list {
- background-color: #fff;
- padding: 0 30rpx;
- margin: 0 30rpx;
- border-radius: 0 0 16rpx 16rpx;
- }
- .record-item {
- display: flex;
- align-items: center;
- padding: 24rpx 0;
- border-bottom: 1rpx solid #f5f5f5;
- }
- .ri-icon {
- width: 72rpx;
- height: 72rpx;
- border-radius: 50%;
- background-color: #FFF3E0;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 20rpx;
- flex-shrink: 0;
- }
- .ri-icon.ri-penalty { background-color: #FAFAFA; }
- .ri-icon-text {
- font-size: 30rpx;
- color: #FF9800;
- font-weight: bold;
- }
- .ri-icon.ri-penalty .ri-icon-text { color: #ccc; }
- .ri-content { flex: 1; }
- .ri-title-row { display: flex; align-items: center; margin-bottom: 6rpx; }
- .ri-date { font-size: 26rpx; color: #333; font-weight: bold; margin-right: 10rpx; }
- .ri-title { font-size: 26rpx; color: #333; }
- .ri-desc { font-size: 24rpx; color: #999; }
- .ri-right {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- margin-left: 16rpx;
- }
- .ri-amount { font-size: 32rpx; font-weight: bold; margin-bottom: 4rpx; }
- .ri-amount.positive { color: #FF5722; }
- .ri-amount.negative { color: #333; }
- .ri-status { font-size: 22rpx; }
- .ri-status.pending { color: #FF9800; }
- .ri-status.credited { color: #999; }
- .ri-status.deducted { color: #999; }
- .more-hint { display: block; text-align: center; font-size: 24rpx; color: #ccc; padding: 30rpx 0; }
- /* 月份选择器 */
- .picker-mask {
- position: fixed;
- top: 0; left: 0;
- width: 100%; height: 100%;
- background-color: rgba(0,0,0,0.5);
- z-index: 999;
- display: flex;
- align-items: flex-end;
- }
- .picker-sheet {
- width: 100%;
- background-color: #fff;
- border-radius: 24rpx 24rpx 0 0;
- }
- .picker-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 24rpx 30rpx;
- border-bottom: 1rpx solid #f5f5f5;
- }
- .picker-cancel { font-size: 28rpx; color: #999; }
- .picker-title { font-size: 30rpx; font-weight: bold; color: #333; }
- .picker-confirm { font-size: 28rpx; color: #FF9800; font-weight: bold; }
- .picker-body {
- display: flex;
- height: 400rpx;
- position: relative;
- overflow: hidden;
- }
- .picker-column {
- flex: 1;
- height: 400rpx;
- }
- .picker-col-item {
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- font-size: 28rpx;
- color: #333;
- }
- .picker-col-item.picker-selected {
- color: #FF9800;
- font-weight: bold;
- background-color: #FFF3E0;
- border-radius: 8rpx;
- }
- .picker-highlight {
- position: absolute;
- top: 50%;
- left: 0;
- transform: translateY(-50%);
- width: 100%;
- height: 80rpx;
- border-top: 1rpx solid #f0f0f0;
- border-bottom: 1rpx solid #f0f0f0;
- pointer-events: none;
- }
- </style>
|