From 5090dd1d44e90af82d3e9166731ec3b1ed72ca2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Sat, 31 Jan 2026 18:57:15 +0800 Subject: [PATCH] =?UTF-8?q?feat(shop):=20=E4=BC=98=E5=8C=96=E5=BA=97?= =?UTF-8?q?=E9=93=BA=E5=8A=9F=E8=83=BD=E6=A8=A1=E5=9D=97=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E5=92=8C=E4=BA=A4=E4=BA=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改提现页面状态标签文案为更准确的描述 - 在用户信息中添加ID显示并调整布局结构 - 简化支付信息显示为统一的商家转账标识 - 调整表格列配置,将用户ID改为订单号,新增收款方式列 - 修复行双击编辑功能被注释的问题 - 将礼品卡文本修正为礼品劵 - 配送员编辑页面增加用户和社区选择组件及密钥保护功能 - 身份证号显示增加掩码保护 - 配送员列表页面重新排列列顺序 - 菜单搜索组件关键词字段从keywords改为title - 开发环境配置中注释掉API地址配置 --- .env.development | 2 +- src/views/shop/shopDealerWithdraw/index.vue | 77 ++++---- .../shop/shopGift/components/makeCard.vue | 2 +- .../components/shopStoreRiderEdit.vue | 173 +++++++++++++----- src/views/shop/shopStoreRider/index.vue | 15 +- .../system/menu/components/menu-search.vue | 4 +- 6 files changed, 176 insertions(+), 97 deletions(-) diff --git a/.env.development b/.env.development index fbcc74b..b8ccd8b 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,5 @@ VITE_APP_NAME=后台管理(开发环境) -VITE_API_URL=http://127.0.0.1:9200/api +#VITE_API_URL=http://127.0.0.1:9200/api #VITE_SERVER_API_URL=http://127.0.0.1:8000/api diff --git a/src/views/shop/shopDealerWithdraw/index.vue b/src/views/shop/shopDealerWithdraw/index.vue index 2999e31..8c5c663 100644 --- a/src/views/shop/shopDealerWithdraw/index.vue +++ b/src/views/shop/shopDealerWithdraw/index.vue @@ -25,41 +25,27 @@ >待审核 审核通过转账成功 - 已驳回 + 用户取消 已打款 @@ -186,26 +172,27 @@ // 表格列配置 const columns = ref([ { - title: '用户ID', - dataIndex: 'userId', - key: 'userId', + title: '订单号', + dataIndex: 'id', + key: 'id', align: 'center', width: 90, fixed: 'left' }, + // { + // title: '用户ID', + // dataIndex: 'userId', + // key: 'userId', + // align: 'center', + // width: 90, + // fixed: 'left' + // }, { - title: '提现金额', - dataIndex: 'money', - key: 'money', + title: '收款方式', + dataIndex: 'paymentInfo', + key: 'paymentInfo', align: 'center', - width: 150, - customRender: ({ text }) => { - const amount = parseFloat(text || '0').toFixed(2); - return { - type: 'span', - children: `¥${amount}` - }; - } + width: 180 }, { title: '用户信息', @@ -213,9 +200,17 @@ key: 'userInfo' }, { - title: '收款信息', - dataIndex: 'paymentInfo', - key: 'paymentInfo' + title: '转账金额', + dataIndex: 'money', + key: 'money', + align: 'center', + customRender: ({ text }) => { + const amount = parseFloat(text || '0').toFixed(2); + return { + type: 'span', + children: `¥${amount}` + }; + } }, // { // title: '审核时间', @@ -247,7 +242,7 @@ key: 'comments' }, { - title: '申请状态', + title: '状态', dataIndex: 'applyStatus', key: 'applyStatus', align: 'center', @@ -448,7 +443,7 @@ }, // 行双击事件 onDblclick: () => { - openEdit(record); + // openEdit(record); } }; }; diff --git a/src/views/shop/shopGift/components/makeCard.vue b/src/views/shop/shopGift/components/makeCard.vue index 1c9458d..6f1a45a 100644 --- a/src/views/shop/shopGift/components/makeCard.vue +++ b/src/views/shop/shopGift/components/makeCard.vue @@ -19,7 +19,7 @@ styleResponsive ? { md: 19, sm: 19, xs: 24 } : { flex: '1' } " > - + + - - + + + + - - - - - - - - - - + + + + + + + - - - 正常 - 禁用 - - + + + 正常 + 禁用 + +