From 62843ef35cee8295eedc68cf59936b966ce315e1 Mon Sep 17 00:00:00 2001
From: wxy <14293288+zysysys@user.noreply.gitee.com>
Date: Tue, 27 Aug 2024 15:35:24 +0800
Subject: [PATCH] =?UTF-8?q?```feat(money):=20=E6=B7=BB=E5=8A=A0=E8=AF=A6?=
=?UTF-8?q?=E6=83=85=E8=A1=A8=E6=A0=BC=E5=92=8C=E5=85=85=E5=80=BC=E8=AF=B4?=
=?UTF-8?q?=E6=98=8E=E6=9B=B4=E6=96=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 在money/detail组件中添加表格显示功能,含日期、姓名和操作列。
- 调整pay组件中充值说明,增加支付金额显示。
- 更新user组件以开启余额预警功能,修改输入字段标签。- 新增userPayinfo API支持用户充值记录查询。
```
---
src/api/system/user.js | 9 ++++
src/views/money/detail/index.vue | 81 ++++++++++++++++++++++++++++----
src/views/money/pay/index.vue | 9 ++--
src/views/money/user/index.vue | 6 +--
4 files changed, 87 insertions(+), 18 deletions(-)
diff --git a/src/api/system/user.js b/src/api/system/user.js
index 47fc9f5..7bae870 100644
--- a/src/api/system/user.js
+++ b/src/api/system/user.js
@@ -12,6 +12,15 @@ export function listUser(query) {
+//充值用户记录
+export function userPayinfo(query) {
+ return request({
+ url: '/system/user/userPayinfo',
+ method: 'get',
+ params: query
+ })
+}
+
// 充值用户余额
export function userRecharge(data) {
return request({
diff --git a/src/views/money/detail/index.vue b/src/views/money/detail/index.vue
index 65bfbb8..c9a9e8b 100644
--- a/src/views/money/detail/index.vue
+++ b/src/views/money/detail/index.vue
@@ -1,13 +1,74 @@
-
-
-
+ 姓名: {{ scope.row.name }} 住址: {{ scope.row.address }}