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 @@ + +