3
0
Fork 0

feat(pages): 删除无用页面

This commit is contained in:
woody 2025-08-13 17:37:07 +08:00
parent 74d83bdc2f
commit 231767d4e0
3 changed files with 0 additions and 310 deletions

View File

@ -123,13 +123,6 @@
"navigationBarBackgroundColor": "#fff"
}
},
{
"path": "pages/bonus/menu",
"style": {
"navigationBarTitleText": "奖金查询",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path": "pages/bonus/index",
"style": {
@ -138,13 +131,6 @@
"enablePullDownRefresh": true
}
},
{
"path": "pages/bonus/real-time",
"style": {
"navigationBarTitleText": "实时奖金",
"navigationBarBackgroundColor": "#fff"
}
},
{
"path": "pages/bonusSource/index",
"style": {

View File

@ -1,84 +0,0 @@
<template>
<view class="content">
<view
@click="goRouter(item.path)"
class="kuaibox"
v-for="(item, index) in selfServiceList"
:key="index"
>
<view class="">
{{ item.name }}
</view>
<image class="kuaiimg" :src="item.url" mode=""></image>
</view>
</view>
</template>
<script>
import * as sel from '@/config/selfService.js'
import { mapGetters } from 'vuex'
export default {
computed: {
...mapGetters(['user']),
},
data() {
return {
selfServiceList: [
{
name: '实时奖金',
url: '../../static/images/bonus-record.svg',
path: '/pages/bonus/real-time',
},
{
name: '奖金明细',
url: '../../static/images/mark2.png',
path: '/pages/bonus/index',
},
],
userInfo: '',
}
},
onShow() {
this.userInfo = uni.getStorageSync('User')
},
methods: {
goRouter(path) {
uni.navigateTo({
url: path,
})
},
},
}
</script>
<style lang="scss" scoped>
.content {
background-color: #f2f2f2;
padding: 4rpx 21rpx 500rpx 21rpx;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.kuaibox {
width: 40%;
// height: 150rpx;
border-radius: 20rpx;
display: flex;
align-items: center;
justify-content: space-between;
padding: 60rpx 40rpx 60rpx 22rpx;
margin: 13rpx 0rpx;
background-color: #ffffff;
font-size: 24rpx;
font-family: Source Han Sans CN;
font-weight: 400;
color: #666666;
.kuaiimg {
width: 52rpx;
height: 53rpx;
}
}
}
</style>

View File

@ -1,212 +0,0 @@
<template>
<view class="container">
<!-- 总览卡片 -->
<view class="summary-card">
<view class="summary-title-container">
<view class="summary-icon"></view>
<text class="summary-title">今日实发合计</text>
</view>
<view class="summary-amount">
<text class="currency-symbol">¥</text>
<text>{{ bonusData.realIncomeTotal || '0.00' }}</text>
</view>
</view>
<!-- 奖金明细列表 -->
<view class="details-card">
<view class="detail-item">
<text class="detail-label">奖金日期</text>
<text class="detail-value date">{{
bonusData.settleDate || formatDate
}}</text>
</view>
<view v-for="(label, key) in detailLabels" :key="key" class="detail-item">
<text class="detail-label">{{ label }}</text>
<text class="detail-value">
<text class="currency-symbol-small">¥</text>
{{ bonusData[key] || '0.00' }}
</text>
</view>
<!-- 分割线 -->
<view class="divider"></view>
<!-- 小计 -->
<view class="detail-item total">
<text class="detail-label total-label">小计(¥)</text>
<text class="detail-value total-value">
<text class="currency-symbol-small">¥</text>
{{ bonusData.retailRealSubtotal || '0.00' }}
</text>
</view>
</view>
</view>
</template>
<script>
import { realTimeBonus } from '@/config/bonus.js'
import dayjs from 'dayjs'
export default {
data() {
return {
// 使
bonusData: {
totalIssued: 0,
date: '',
retailRangeIncome: 0,
retailSameLevelIncome: 0.0,
retailAreaIncome: 0.0,
// welfareLevelDifferenceIncome: 0.0,
// welfareDividendIncome: 0.0,
backPoints: 0,
subtotal: 0,
},
detailLabels: {
retailRangeIncome: '直推收益(¥)',
retailSameLevelIncome: '平级收益(¥)',
retailAreaIncome: '区域收益(¥)',
// welfareLevelDifferenceIncome: '(¥)',
// welfareDividendIncome: '(¥)',
backPoints: '重消收益(¥)',
},
}
},
onLoad() {},
onShow() {
this.getRealTimeBonus()
},
computed: {
formatDate() {
return dayjs(new Date()).format('YYYY-MM-DD')
},
},
methods: {
getRealTimeBonus() {
realTimeBonus().then(res => {
this.bonusData = res.rows?.[0] || {}
})
},
},
}
</script>
<style scoped>
/* 主题色 */
:root {
--primary-color: #005bac;
}
.container {
background-color: #f7f8fa;
min-height: 100vh;
padding: 12px;
box-sizing: border-box;
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.summary-card {
background: linear-gradient(45deg, #005bac, #0077d9);
color: #ffffff;
padding: 24px;
border-radius: 16px;
margin-bottom: 16px;
box-shadow: 0 8px 16px rgba(0, 91, 172, 0.2);
text-align: left;
}
.summary-title-container {
display: flex;
align-items: center;
margin-bottom: 8px;
}
.summary-icon {
width: 4px;
height: 16px;
background-color: #fff;
border-radius: 2px;
margin-right: 8px;
}
.summary-title {
font-size: 16px;
opacity: 0.9;
}
.summary-amount {
font-size: 38px;
font-weight: 700;
display: flex;
align-items: baseline;
}
.currency-symbol {
font-size: 22px;
font-weight: 500;
margin-right: 4px;
}
.currency-symbol-small {
font-size: 14px;
font-weight: 400;
color: #666;
margin-right: 2px;
}
.details-card {
background-color: #ffffff;
padding: 8px 20px;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.detail-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 0;
}
.divider {
height: 1px;
background-color: #f2f2f2;
margin: 0;
}
.detail-label {
font-size: 15px;
color: #333;
}
.detail-value {
font-size: 16px;
color: #333;
font-weight: 500;
display: flex;
align-items: center;
}
.detail-value.date {
color: #999;
font-weight: 400;
}
.total {
padding-top: 18px;
}
.total-label {
font-weight: 600;
}
.total-value {
font-size: 20px;
font-weight: 600;
color: var(--primary-color);
}
.total-value .currency-symbol-small {
color: var(--primary-color);
font-size: 16px;
}
</style>