From c84aeda062493066ac60737326953a87d4a285a6 Mon Sep 17 00:00:00 2001 From: apple Date: Wed, 25 Mar 2026 10:12:15 +0800 Subject: [PATCH] =?UTF-8?q?fix(fsgx):=20=E6=88=91=E7=9A=84=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=88=86=E9=94=80=E7=AD=89=E7=BA=A7/=E8=B5=84?= =?UTF-8?q?=E4=BA=A7=E6=A0=87=E9=A2=98/=E4=BD=A3=E9=87=91=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E4=B8=89=E5=A4=84UI=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 我的页面:用户ID旁徽标改为显示分销等级(agent_level_name),无等级时不显示 - 我的资产页面:去除顶部"我的资产"标题 - 推荐佣金页面:佣金记录改用 spreadOrder API,修复因数据源错误导致列表为空的问题 Made-with: Cursor --- docs/issues-0325-1.md | 21 +++++++++++++++++++ pro_v3.5.1/view/uniapp/pages/assets/index.vue | 4 ---- pro_v3.5.1/view/uniapp/pages/queue/status.vue | 5 ++--- .../user/components/member/template1.vue | 8 +++---- 4 files changed, 27 insertions(+), 11 deletions(-) create mode 100644 docs/issues-0325-1.md diff --git a/docs/issues-0325-1.md b/docs/issues-0325-1.md new file mode 100644 index 00000000..c0b8dcac --- /dev/null +++ b/docs/issues-0325-1.md @@ -0,0 +1,21 @@ +# 管理后台 + +# uniapp移动端 + +## 我的页面(tabbar页) +1. 用户ID右边显示的会员等级改成显示分销等级 + +## 我的资产页面(/pages/assets/index) +1. 页面顶部“我的资产”的标题去除 + +## 推荐佣金页面(/pages/queue/status) +1. 佣金记录不显示 + + +--- + +# 测试 + +# 相关文件 +1. **相关文件**:`docs/PRD_fsgx_V1.0.md` `docs/page-dev-specs-fsgx.md`, + diff --git a/pro_v3.5.1/view/uniapp/pages/assets/index.vue b/pro_v3.5.1/view/uniapp/pages/assets/index.vue index b02a5522..123f461b 100644 --- a/pro_v3.5.1/view/uniapp/pages/assets/index.vue +++ b/pro_v3.5.1/view/uniapp/pages/assets/index.vue @@ -3,10 +3,6 @@ - - 我的资产 - - diff --git a/pro_v3.5.1/view/uniapp/pages/queue/status.vue b/pro_v3.5.1/view/uniapp/pages/queue/status.vue index 3cdcf69c..315b0009 100644 --- a/pro_v3.5.1/view/uniapp/pages/queue/status.vue +++ b/pro_v3.5.1/view/uniapp/pages/queue/status.vue @@ -87,7 +87,7 @@ import HjfQueueProgress from '@/components/HjfQueueProgress.vue'; import HjfRefundNotice from '@/components/HjfRefundNotice.vue'; import emptyPage from '@/components/emptyPage.vue'; import colors from '@/mixins/color.js'; -import { getCommissionInfo } from '@/api/user.js'; +import { spreadOrder } from '@/api/user.js'; export default { name: 'BrokerageStatus', @@ -131,8 +131,7 @@ export default { const isFirst = this.page === 1; if (isFirst) this.loading = true; else this.loadingMore = true; - // type=3 获取返佣记录 - getCommissionInfo({ page: this.page, limit: this.limit }, 3) + spreadOrder({ page: this.page, limit: this.limit, category: 'now_money', type: 'brokerage' }) .then(res => { const list = (res && res.data && res.data.list) ? res.data.list : []; if (list.length < this.limit) this.finished = true; diff --git a/pro_v3.5.1/view/uniapp/pages/user/components/member/template1.vue b/pro_v3.5.1/view/uniapp/pages/user/components/member/template1.vue index 3ad2b078..8b81d54f 100644 --- a/pro_v3.5.1/view/uniapp/pages/user/components/member/template1.vue +++ b/pro_v3.5.1/view/uniapp/pages/user/components/member/template1.vue @@ -58,10 +58,10 @@ export default { 绑定手机号 {{ perShowType ? 'ID:' + userInfo.uid : userInfo.phone }} - - - {{ userInfo.vip_name || ('V' + userInfo.level) }} - + + + {{ userInfo.agent_level_name }} +