From 55947e774ab5f5fca53fef3913e1d60eea99ef48 Mon Sep 17 00:00:00 2001 From: 15976874561 <2553956742@qq.com> Date: Wed, 24 Dec 2025 12:59:56 +0800 Subject: [PATCH 1/7] =?UTF-8?q?=E9=87=8D=E6=96=B0=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E6=95=99=E8=81=8C=E5=B7=A5=E6=95=B0=E6=8D=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../synchronous-data/sync-instructor/index.vue | 1 - .../sync-instructor/syncTeacher.vue | 14 +++++++------- src/views/system/teacher/index.vue | 2 +- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/views/stuCQS/synchronous-data/sync-instructor/index.vue b/src/views/stuCQS/synchronous-data/sync-instructor/index.vue index 0bd56eb..b7ac131 100644 --- a/src/views/stuCQS/synchronous-data/sync-instructor/index.vue +++ b/src/views/stuCQS/synchronous-data/sync-instructor/index.vue @@ -222,7 +222,6 @@ export default { getList() { this.loading = true listInstructor(this.queryParams).then(response => { - console.log(response.data); this.middleList = response.data this.total = response.total this.loading = false diff --git a/src/views/stuCQS/synchronous-data/sync-instructor/syncTeacher.vue b/src/views/stuCQS/synchronous-data/sync-instructor/syncTeacher.vue index 6b2cf00..c99965c 100644 --- a/src/views/stuCQS/synchronous-data/sync-instructor/syncTeacher.vue +++ b/src/views/stuCQS/synchronous-data/sync-instructor/syncTeacher.vue @@ -73,20 +73,20 @@ export default { this.loading = false }) }, - /** 导出按钮操作 */ + /** 导出按钮操作 */ handleExport() { this.download('system/middle/export', { ...this.queryParams }, `middle_${new Date().getTime()}.xlsx`) }, //同步数据 - handleSync() { - syncInstructorinfonew().then(res => { + async handleSync() { + let res = await syncInstructorinfonew() + if (res.code == 200) { this.$modal.msgSuccess(res.msg) - }) + } } - + } } - - \ No newline at end of file + \ No newline at end of file diff --git a/src/views/system/teacher/index.vue b/src/views/system/teacher/index.vue index f3e9363..794e27e 100644 --- a/src/views/system/teacher/index.vue +++ b/src/views/system/teacher/index.vue @@ -190,7 +190,7 @@ :label="dict.value" >{{ dict.label }} --> - + Date: Thu, 25 Dec 2025 11:36:44 +0800 Subject: [PATCH 2/7] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E4=B8=93=E4=B8=9A?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/stuCQS/synchronous-data/sync-major.js | 8 ++ .../sync-major/syncZhuanYe.vue | 117 ++++++++++++++++++ 2 files changed, 125 insertions(+) create mode 100644 src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue diff --git a/src/api/stuCQS/synchronous-data/sync-major.js b/src/api/stuCQS/synchronous-data/sync-major.js index e0e966b..7b63c6e 100644 --- a/src/api/stuCQS/synchronous-data/sync-major.js +++ b/src/api/stuCQS/synchronous-data/sync-major.js @@ -22,3 +22,11 @@ export function syncMajorinfo() { method: 'post' }) } +//新查询专业列表 +export function listZhuanYe(query) { + return request({ + url: '/syncdata/getSpecialtyInfoList', + method: 'get', + params: query + }) +} diff --git a/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue b/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue new file mode 100644 index 0000000..57ba0e1 --- /dev/null +++ b/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue @@ -0,0 +1,117 @@ + + \ No newline at end of file From 9588c01abae9fc32d50efd725e0df64348848654 Mon Sep 17 00:00:00 2001 From: 15976874561 <2553956742@qq.com> Date: Thu, 25 Dec 2025 17:36:04 +0800 Subject: [PATCH 3/7] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E4=B8=93=E4=B8=9A?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/stuCQS/synchronous-data/sync-major.js | 1 + .../synchronous-data/sync-major/syncZhuanYe.vue | 15 ++++----------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/src/api/stuCQS/synchronous-data/sync-major.js b/src/api/stuCQS/synchronous-data/sync-major.js index 7b63c6e..1110b1d 100644 --- a/src/api/stuCQS/synchronous-data/sync-major.js +++ b/src/api/stuCQS/synchronous-data/sync-major.js @@ -30,3 +30,4 @@ export function listZhuanYe(query) { params: query }) } + diff --git a/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue b/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue index 57ba0e1..e41fc0f 100644 --- a/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue +++ b/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue @@ -20,6 +20,7 @@ @click="handleSync">同步数据 + @@ -33,7 +34,7 @@ + \ No newline at end of file diff --git a/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue b/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue index e41fc0f..7669019 100644 --- a/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue +++ b/src/views/stuCQS/synchronous-data/sync-major/syncZhuanYe.vue @@ -28,13 +28,12 @@ - + \ No newline at end of file diff --git a/src/views/survey/leave/fdy.vue b/src/views/survey/leave/fdy.vue index 95eec04..61ce318 100644 --- a/src/views/survey/leave/fdy.vue +++ b/src/views/survey/leave/fdy.vue @@ -136,7 +136,7 @@ - + @@ -149,6 +149,10 @@ + + + + - + @@ -501,7 +505,7 @@ export default { this.$message.info('请选择去向调查') return } - // // 重置页码为1,避免fromIndex > toIndex错误 + // // 重置页码为1,避免fromIndex > toIndex错误 // this.lookParams.pageNum = 1; let loading = fullLoading(this) let res = await listFdyStuLeave(this.lookParams) @@ -564,7 +568,7 @@ export default { } } catch (error) { loading.close() - this.$message.error('驳回失败:' + error.message) + this.$message.error('驳回失败:' + error.message) } }) }, @@ -610,7 +614,7 @@ export default { loading.close() if (res.code == 200) { - this.$message.success('编辑保存成功!') + this.$message.success('编辑保存成功!') // 刷新列表数据 this.getList() } else { @@ -618,7 +622,7 @@ export default { } } catch (error) { loading.close() - this.$message.error('编辑保存失败:' + error.message) + this.$message.error('编辑保存失败:' + error.message) } }, From c904255c6c1d26f8b5579af2ddffd3ad22dd16a9 Mon Sep 17 00:00:00 2001 From: 15976874561 <2553956742@qq.com> Date: Mon, 29 Dec 2025 15:19:29 +0800 Subject: [PATCH 7/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=8F=AD=E7=BA=A7?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=90=8C=E6=AD=A5=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/stuCQS/synchronous-data/sync-class.js | 9 ++++++++- .../stuCQS/synchronous-data/sync-class/syncBj.vue | 10 ++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/api/stuCQS/synchronous-data/sync-class.js b/src/api/stuCQS/synchronous-data/sync-class.js index d99a0e1..2079d54 100644 --- a/src/api/stuCQS/synchronous-data/sync-class.js +++ b/src/api/stuCQS/synchronous-data/sync-class.js @@ -22,4 +22,11 @@ export function syncClassinfo() { method: 'post' }) } - +// 新查询班级列表 +export function listBj(query) { + return request({ + url: '/syncdata/classInfoList', + method: 'get', + params: query + }) +} diff --git a/src/views/stuCQS/synchronous-data/sync-class/syncBj.vue b/src/views/stuCQS/synchronous-data/sync-class/syncBj.vue index da86c28..49b8692 100644 --- a/src/views/stuCQS/synchronous-data/sync-class/syncBj.vue +++ b/src/views/stuCQS/synchronous-data/sync-class/syncBj.vue @@ -24,12 +24,10 @@ - - - + - + @@ -38,7 +36,7 @@