From 459783fd4af8e8c0566b57690e7f0579373d2db8 Mon Sep 17 00:00:00 2001 From: tian <3072314689@qq.com> Date: 星期五, 26 九月 2025 11:42:46 +0800 Subject: [PATCH] ‘列表查询 --- src/api/system/records.js | 36 +++++++++++++++++++++++++++++++++++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/src/api/system/records.js b/src/api/system/records.js index d2057e8..df20777 100644 --- a/src/api/system/records.js +++ b/src/api/system/records.js @@ -1,4 +1,21 @@ import request from '@/utils/request' +//缁熻鍒嗘瀽缁撴灉 +export function statisticInfo() +{ + return request({ + url: '/system/records/analysisRes', + method: 'get', + }) +} +//鏇存柊鐘舵�� +export function updateStatusById(id) +{ + return request({ + url: '/system/records/updateStatusById/' + id, + method: 'get', + // data: data + }) +} // 鏌ヨ妗f璁板綍鍒楄〃 export function listRecords(query) { @@ -8,7 +25,14 @@ params: query }) } - +//鏌ヨ褰撳墠鏈�澶�")= +export function getMaxId() +{ + return request({ + url: '/system/records/getMaxId', + method: 'get' + }) +} // 鏌ヨ妗f璁板綍璇︾粏 export function getRecords(id) { return request({ @@ -42,3 +66,13 @@ method: 'delete' }) } + + +export function batchSubmitRecords(ids) { + + return request({ + url: '/system/records/updateSByIds', + method: 'post', + data: ids + }) +} \ No newline at end of file -- Gitblit v1.9.1