From 4199ddef14e7efff95a0fd547c39fed46031d46a Mon Sep 17 00:00:00 2001 From: shidongli Date: Wed, 3 Aug 2022 13:49:45 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E5=A4=84=E6=96=B9=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=8C=E6=B5=8B=E8=AF=95=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=88=86=E7=B1=BB=E5=8A=9F=E8=83=BD,=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E6=88=90=E7=BB=A9=E6=89=B9=E6=AC=A1=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/testScoreBatch.js | 44 ++++ src/views/system/testScoreBatch/index.vue | 289 ++++++++++++++++++++++ 2 files changed, 333 insertions(+) create mode 100644 src/api/system/testScoreBatch.js create mode 100644 src/views/system/testScoreBatch/index.vue diff --git a/src/api/system/testScoreBatch.js b/src/api/system/testScoreBatch.js new file mode 100644 index 0000000..0181579 --- /dev/null +++ b/src/api/system/testScoreBatch.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询测试成绩批次列表 +export function listTestScoreBatch(query) { + return request({ + url: '/system/testScoreBatch/list', + method: 'get', + params: query + }) +} + +// 查询测试成绩批次详细 +export function getTestScoreBatch(id) { + return request({ + url: '/system/testScoreBatch/' + id, + method: 'get' + }) +} + +// 新增测试成绩批次 +export function addTestScoreBatch(data) { + return request({ + url: '/system/testScoreBatch/add', + method: 'post', + data: data + }) +} + +// 修改测试成绩批次 +export function updateTestScoreBatch(data) { + return request({ + url: '/system/testScoreBatch/edit', + method: 'post', + data: data + }) +} + +// 删除测试成绩批次 +export function delTestScoreBatch(id) { + return request({ + url: '/system/testScoreBatch/' + id, + method: 'delete' + }) +} diff --git a/src/views/system/testScoreBatch/index.vue b/src/views/system/testScoreBatch/index.vue new file mode 100644 index 0000000..501ca58 --- /dev/null +++ b/src/views/system/testScoreBatch/index.vue @@ -0,0 +1,289 @@ + + + From 46852f4a413dd94301b88d544f0cbd0202fec5c6 Mon Sep 17 00:00:00 2001 From: shidongli Date: Tue, 9 Aug 2022 08:44:55 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E5=A4=84=E6=96=B9=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=8C=E6=B5=8B=E8=AF=95=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=88=86=E7=B1=BB=E5=8A=9F=E8=83=BD=EF=BC=8C=E5=85=A8=E5=9B=BD?= =?UTF-8?q?=E5=B9=B3=E5=9D=87=E6=88=90=E7=BB=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/testItemCountryScore.js | 54 ++ .../system/testItemCountryScore/index.vue | 742 ++++++++++++++++++ 2 files changed, 796 insertions(+) create mode 100644 src/api/system/testItemCountryScore.js create mode 100644 src/views/system/testItemCountryScore/index.vue diff --git a/src/api/system/testItemCountryScore.js b/src/api/system/testItemCountryScore.js new file mode 100644 index 0000000..aefbc16 --- /dev/null +++ b/src/api/system/testItemCountryScore.js @@ -0,0 +1,54 @@ +import request from '@/utils/request' + +// 查询全国平均成绩列表 +export function listTestItemCountryScore(query) { + return request({ + url: '/system/testItemCountryScore/list', + method: 'get', + params: query + }) +} + + + +// 查询项目列表 +export function testItemslist(query) { + return request({ + url: '/system/testItems/list', + method: 'get', + params: query + }) +} +// 查询全国平均成绩详细 +export function getTestItemCountryScore(id) { + return request({ + url: '/system/testItemCountryScore/' + id, + method: 'get' + }) +} + +// 新增全国平均成绩 +export function addTestItemCountryScore(data) { + return request({ + url: '/system/testItemCountryScore/add', + method: 'post', + data: data + }) +} + +// 修改全国平均成绩 +export function updateTestItemCountryScore(data) { + return request({ + url: '/system/testItemCountryScore/edit', + method: 'post', + data: data + }) +} + +// 删除全国平均成绩 +export function delTestItemCountryScore(id) { + return request({ + url: '/system/testItemCountryScore/' + id, + method: 'delete' + }) +} diff --git a/src/views/system/testItemCountryScore/index.vue b/src/views/system/testItemCountryScore/index.vue new file mode 100644 index 0000000..d7fc21e --- /dev/null +++ b/src/views/system/testItemCountryScore/index.vue @@ -0,0 +1,742 @@ + + + From ea5211b7fa673922fa2de3a4583ae106a426d8e9 Mon Sep 17 00:00:00 2001 From: shidongli Date: Thu, 11 Aug 2022 09:35:14 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E5=A4=84=E6=96=B9=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=8C=E6=B5=8B=E8=AF=95=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=88=86=E7=B1=BB=E5=8A=9F=E8=83=BD=EF=BC=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/testItemScore.js | 79 + .../system/testItemCountryScore/index.vue | 6 +- src/views/system/testItemScore/index.vue | 1630 +++++++++++++++++ 3 files changed, 1713 insertions(+), 2 deletions(-) create mode 100644 src/api/system/testItemScore.js create mode 100644 src/views/system/testItemScore/index.vue diff --git a/src/api/system/testItemScore.js b/src/api/system/testItemScore.js new file mode 100644 index 0000000..385a22e --- /dev/null +++ b/src/api/system/testItemScore.js @@ -0,0 +1,79 @@ +import request from '@/utils/request' + +// 查询个人成绩录入管理列表 +export function listTestItemScore(query) { + return request({ + url: '/system/testItemScore/list', + method: 'get', + params: query + }) +} + +// 查询班级信息列表 +export function classInfo(query) { + return request({ + url: '/system/classInfo/list', + method: 'get', + params: query + }) +} +//查询学生信息列表 +export function studentInfo(query) { + return request({ + url: 'system/studentInfo/list', + method: 'get', + params: query + }) +} + +//查询测试项目列表 +export function testItems(query) { + return request({ + url: '/system/testItems/list', + method: 'get', + params: query + }) +} + +//查询成绩批次编号列表 +export function testScoreBatch(query) { + return request({ + url: 'system/testScoreBatch/list', + method: 'get', + params: query + }) +} + +// 查询个人成绩录入管理详细 +export function getTestItemScore(id) { + return request({ + url: '/system/testItemScore/' + id, + method: 'get' + }) +} + +// 新增个人成绩录入管理 +export function addTestItemScore(data) { + return request({ + url: '/system/testItemScore/add', + method: 'post', + data: data + }) +} + +// 修改个人成绩录入管理 +export function updateTestItemScore(data) { + return request({ + url: '/system/testItemScore/edit', + method: 'post', + data: data + }) +} + +// 删除个人成绩录入管理 +export function delTestItemScore(id) { + return request({ + url: '/system/testItemScore/' + id, + method: 'delete' + }) +} diff --git a/src/views/system/testItemCountryScore/index.vue b/src/views/system/testItemCountryScore/index.vue index d7fc21e..298c677 100644 --- a/src/views/system/testItemCountryScore/index.vue +++ b/src/views/system/testItemCountryScore/index.vue @@ -146,6 +146,7 @@ :visible.sync="open2" width="550px" append-to-body + :before-close="cancel2" > - + +
+ + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + 新增 + + + 修改 + + + 删除 + + + 导出 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ xmname }} + + {{ xmname }} + + + + {{ stname }} + {{ stname }} + + + + {{ testname }} + + {{ testname }} + + + + {{ itemNumbername }} + {{ itemNumbername }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + From f9e6e795215f6e0614d80939a9a0c5fbcc60f48d Mon Sep 17 00:00:00 2001 From: shidongli Date: Thu, 11 Aug 2022 09:50:22 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E5=A4=84=E6=96=B9=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=8C=E6=B5=8B=E8=AF=95=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=88=86=E7=B1=BB=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/testItemScore/index.vue | 81 +++--------------------- 1 file changed, 9 insertions(+), 72 deletions(-) diff --git a/src/views/system/testItemScore/index.vue b/src/views/system/testItemScore/index.vue index fb889ee..5fe397a 100644 --- a/src/views/system/testItemScore/index.vue +++ b/src/views/system/testItemScore/index.vue @@ -40,70 +40,7 @@ @keyup.enter.native="handleQuery" />
- +