From 7085267711a041282b03b06ec647e17d6d6ba49a Mon Sep 17 00:00:00 2001 From: QI_YUJIE <2878090898@qq.com> Date: Mon, 8 Apr 2024 13:41:07 +0800 Subject: [PATCH] =?UTF-8?q?task=20=E4=BA=A7=E6=9D=83=E4=BA=A4=E6=98=93?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=20=E4=BC=9A=E5=91=98=E6=B3=A8=E5=86=8C?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E6=96=B0=E7=89=88=E5=AE=A1=E6=89=B9=E6=B5=81?= =?UTF-8?q?=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/user/index.js | 9 +++++++ src/views/user/index.vue | 52 ++++++++++++++++++++++++++++++++-------- 2 files changed, 51 insertions(+), 10 deletions(-) diff --git a/src/api/user/index.js b/src/api/user/index.js index 6ad33398..5965ca6d 100644 --- a/src/api/user/index.js +++ b/src/api/user/index.js @@ -193,6 +193,15 @@ export function realtimeList(query){ }) } +// 查询审批历史 +export function auditHistoryList(params) { + return request({ + url: '/transaction/website/auditHistory/list', + method: 'get', + params: params + }); +} + export const options = [ { "value": "北京", diff --git a/src/views/user/index.vue b/src/views/user/index.vue index b73eaba7..44947d50 100644 --- a/src/views/user/index.vue +++ b/src/views/user/index.vue @@ -39,13 +39,30 @@
- + + + + + + {{ auditStatusFormat(item.auditStatus) }} + + + + 角色: {{ item.roleName }} + + + 用户: {{ item.nickName }} + + + + +
@@ -54,7 +71,7 @@