修改bug
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 8m39s

This commit is contained in:
sexygoat
2026-03-11 17:09:35 +08:00
parent bd45f7a224
commit d43de4cd06
37 changed files with 2552 additions and 1696 deletions

View File

@@ -1,6 +1,13 @@
<template>
<div class="analysis-dashboard">
开发中敬请期待...
<!-- 佣金概览 -->
<div class="section-title">佣金概览</div>
<CommissionSummary />
<!-- 提现配置 -->
<div class="section-title">提现配置</div>
<WithdrawalSettings />
<!--<el-row :gutter="20">-->
<!-- <el-col :xl="14" :lg="15" :xs="24">-->
<!-- <TodaySales />-->
@@ -45,10 +52,24 @@
import TopProducts from './widget/TopProducts.vue'
import SalesMappingByCountry from './widget/SalesMappingByCountry.vue'
import VolumeServiceLevel from './widget/VolumeServiceLevel.vue'
import CommissionSummary from './widget/CommissionSummary.vue'
import WithdrawalSettings from './widget/WithdrawalSettings.vue'
defineOptions({ name: 'Analysis' })
</script>
<style lang="scss" scoped>
@use './style';
.section-title {
margin-top: 24px;
margin-bottom: 16px;
font-size: 18px;
font-weight: 600;
color: var(--el-text-color-primary);
&:first-child {
margin-top: 0;
}
}
</style>