From 90ab562f5eac24e0e3b334335f6d76438236f305 Mon Sep 17 00:00:00 2001 From: spring <2396852758@qq.com> Date: 星期四, 21 八月 2025 10:04:30 +0800 Subject: [PATCH] 完成档案统计 --- src/api/lavorissce/ledger.js | 21 +++++++++++++++++++-- 1 files changed, 19 insertions(+), 2 deletions(-) diff --git a/src/api/lavorissce/ledger.js b/src/api/lavorissce/ledger.js index 5b7c94a..f4f710c 100644 --- a/src/api/lavorissce/ledger.js +++ b/src/api/lavorissce/ledger.js @@ -1,11 +1,28 @@ import request from '@/utils/request' // 鍒嗛〉鏌ヨ -export function listPage(data) { +export function listPage(query) { return request({ url: '/lavorIssue/listPage', method: 'get', - data + params: query + }) +} + +// 鍒嗛〉鏌ヨ +export function statistics(params) { + return request({ + url: '/lavorIssue/statistics', + method: 'get', + params + }) +} + +export function statisticsList(params) { + return request({ + url: '/lavorIssue/statisticsList', + method: 'get', + params }) } -- Gitblit v1.9.3