From 4b952280b3a6ec35d170a454dfc5e9018c22202d Mon Sep 17 00:00:00 2001 From: zhaichao Date: Sun, 23 Aug 2026 17:51:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=A6=E5=91=98=E9=A2=84=E8=AD=A6=E7=BB=93?= =?UTF-8?q?=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/studentRecords/warningResult.js | 21 ++ .../src/views/student/warningResult/index.vue | 253 +++++++++++++++++- 2 files changed, 268 insertions(+), 6 deletions(-) create mode 100644 frontend/src/api/studentRecords/warningResult.js diff --git a/frontend/src/api/studentRecords/warningResult.js b/frontend/src/api/studentRecords/warningResult.js new file mode 100644 index 000000000..18fe36606 --- /dev/null +++ b/frontend/src/api/studentRecords/warningResult.js @@ -0,0 +1,21 @@ +import request from '@/utils/request' + +// ======================== 学员学籍预警结果(实体 XYXJYJGJG,查询:实体类) ======================== + +// 分页查询预警结果列表 +export function listWarningResult(query) { + return request({ + url: '/student-records/warning-result/list', + method: 'get', + params: query + }) +} + +// 查询预警结果详情(bh 预警结果编号) +export function getWarningResult(bh) { + return request({ + url: '/student-records/warning-result/get', + method: 'get', + params: { bh: bh } + }) +} diff --git a/frontend/src/views/student/warningResult/index.vue b/frontend/src/views/student/warningResult/index.vue index d35e4c500..3a626e33d 100644 --- a/frontend/src/views/student/warningResult/index.vue +++ b/frontend/src/views/student/warningResult/index.vue @@ -1,15 +1,256 @@ + +