@@ -111,7 +111,7 @@
-
+
@@ -451,7 +451,7 @@ export default {
handleDelete(row) {
const ids = row.id || this.ids
this.$modal
- .confirm('是否确认删除困难认定编号为"' + ids + '"的数据项?')
+ .confirm('是否确认删除困难认定编号为"' + ids + '"的数据项?')
.then(function () {
return delApply(ids)
})
@@ -464,7 +464,7 @@ export default {
handleRevoke(row) {
this.$modal
- .confirm('是否确认撤回该记录?')
+ .confirm('是否确认撤回该记录?')
.then(function () {
return revoke(row)
})
diff --git a/src/views/routine/classmetting/cadownload/index.vue b/src/views/routine/classmetting/cadownload/index.vue
index 3659b97..6bcde37 100644
--- a/src/views/routine/classmetting/cadownload/index.vue
+++ b/src/views/routine/classmetting/cadownload/index.vue
@@ -4,10 +4,15 @@
+
+
+
+
+
+ clearable filterable @change="handleChangeQuery">
{{ data.label }}
({{ data.children.length }})
@@ -16,13 +21,11 @@
+ @keyup.enter.native="handleQuery" />
+ placeholder="请选择班会时间" />
@@ -82,8 +85,7 @@
+ @pagination="getList" />
@@ -129,6 +131,7 @@
import { addClassMettingContent, delClassMettingContent, getClassMettingContent, listClassMettingContent, updateClassMettingContent } from '@/api/routine/classmeting/classMettingContent'
import { listClassMettingTheme } from '@/api/routine/theme/ClassMettingTheme'
import { getClassName } from '@/api/stuCQS/basedata/student'
+import { getDeptName } from '@/api/system/dept'
import AttachUpload from '@/components/AttachUpload'
export default {
name: 'ClassMettingContent',
@@ -160,6 +163,8 @@ export default {
title: '',
//班级列表
ClassNameList: [],
+ // 学院列表
+ deptList: [],
// 是否显示弹出层
open: false,
//班会主题内容
@@ -189,6 +194,7 @@ export default {
this.cmNo = this.$route.query.cmNo
this.getList()
this.getClassNameList()
+ this.getDeptList()
this.getClassTheme()
},
methods: {
@@ -220,6 +226,12 @@ export default {
this.ClassNameList = res.data
})
},
+ // 获取学院列表
+ getDeptList() {
+ getDeptName().then(response => {
+ this.deptList = response.data
+ })
+ },
// 取消按钮
cancel() {
this.open = false
@@ -323,7 +335,7 @@ export default {
this.getList()
})
} else {
- this.form.crCmNo = this.cmNo //加入编码,关联数据
+ this.form.crCmNo = this.cmNo //加入编码,关联数据
addClassMettingContent(this.form).then(response => {
this.$modal.msgSuccess('新增成功')
this.open = false
@@ -336,7 +348,7 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const crIds = row.crId || this.ids
- this.$modal.confirm('是否确认删除班会内容编号为"' + crIds + '"的数据项?').then(function () {
+ this.$modal.confirm('是否确认删除班会内容编号为"' + crIds + '"的数据项?').then(function () {
return delClassMettingContent(crIds)
}).then(() => {
this.getList()
From fa8f2d5dade666505f2f10af4f0ecb7dd895fab7 Mon Sep 17 00:00:00 2001
From: 15976874561 <2553956742@qq.com>
Date: Mon, 5 Jan 2026 16:21:04 +0800
Subject: [PATCH 07/10] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=AD=A6=E7=94=9F?=
=?UTF-8?q?=E4=BF=A1=E6=81=AF=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-stu.js | 8 ++++++++
src/views/stuCQS/synchronous-data/sync-class/syncBj.vue | 3 +++
.../synchronous-data/sync-instructor/syncTeacher.vue | 1 +
3 files changed, 12 insertions(+)
diff --git a/src/api/stuCQS/synchronous-data/sync-stu.js b/src/api/stuCQS/synchronous-data/sync-stu.js
index c7faf57..6f73ee0 100644
--- a/src/api/stuCQS/synchronous-data/sync-stu.js
+++ b/src/api/stuCQS/synchronous-data/sync-stu.js
@@ -16,3 +16,11 @@ export function syncStuinfo() {
method: 'post'
})
}
+//新查询学生信息列表
+export function listStudent(query) {
+ return request({
+ url: '/syncdata/getStudentInfo',
+ 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 c747882..06579c0 100644
--- a/src/views/stuCQS/synchronous-data/sync-class/syncBj.vue
+++ b/src/views/stuCQS/synchronous-data/sync-class/syncBj.vue
@@ -21,6 +21,9 @@
重置
+
+
+
diff --git a/src/views/stuCQS/synchronous-data/sync-instructor/syncTeacher.vue b/src/views/stuCQS/synchronous-data/sync-instructor/syncTeacher.vue
index ba93c13..6b3a6da 100644
--- a/src/views/stuCQS/synchronous-data/sync-instructor/syncTeacher.vue
+++ b/src/views/stuCQS/synchronous-data/sync-instructor/syncTeacher.vue
@@ -19,6 +19,7 @@
@click="handleSync">同步数据
+
From 2ebdd36009c368c467b301a8c07cc2f0aff7f4ab Mon Sep 17 00:00:00 2001
From: 15976874561 <2553956742@qq.com>
Date: Mon, 5 Jan 2026 16:21:40 +0800
Subject: [PATCH 08/10] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=AD=A6=E7=94=9F?=
=?UTF-8?q?=E4=BF=A1=E6=81=AF=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../studentinfo/syncStudent.vue | 146 ++++++++++++++++++
1 file changed, 146 insertions(+)
create mode 100644 src/views/stuCQS/synchronous-data/studentinfo/syncStudent.vue
diff --git a/src/views/stuCQS/synchronous-data/studentinfo/syncStudent.vue b/src/views/stuCQS/synchronous-data/studentinfo/syncStudent.vue
new file mode 100644
index 0000000..0ba8b60
--- /dev/null
+++ b/src/views/stuCQS/synchronous-data/studentinfo/syncStudent.vue
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+ 导出
+
+ 同步数据
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
From 51b24f02db63e784881d9a5836ca9fe83e3bbf53 Mon Sep 17 00:00:00 2001
From: 15976874561 <2553956742@qq.com>
Date: Tue, 6 Jan 2026 15:46:04 +0800
Subject: [PATCH 09/10] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=AD=A6=E7=94=9F?=
=?UTF-8?q?=E4=BF=A1=E6=81=AF=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-stu.js | 7 +++
.../studentinfo/syncStudent.vue | 62 ++++++++++++++-----
.../synchronous-data/sync-class/syncBj.vue | 2 -
.../sync-instructor/syncTeacher.vue | 4 +-
.../sync-major/syncZhuanYe.vue | 2 -
5 files changed, 54 insertions(+), 23 deletions(-)
diff --git a/src/api/stuCQS/synchronous-data/sync-stu.js b/src/api/stuCQS/synchronous-data/sync-stu.js
index 6f73ee0..01f01c7 100644
--- a/src/api/stuCQS/synchronous-data/sync-stu.js
+++ b/src/api/stuCQS/synchronous-data/sync-stu.js
@@ -24,3 +24,10 @@ export function listStudent(query) {
params: query
})
}
+// 新同步学生信息
+export function syncStudentInfo() {
+ return request({
+ url: '/syncdata/synchronousStudent',
+ method: 'post'
+ })
+}
diff --git a/src/views/stuCQS/synchronous-data/studentinfo/syncStudent.vue b/src/views/stuCQS/synchronous-data/studentinfo/syncStudent.vue
index 0ba8b60..fce3cd6 100644
--- a/src/views/stuCQS/synchronous-data/studentinfo/syncStudent.vue
+++ b/src/views/stuCQS/synchronous-data/studentinfo/syncStudent.vue
@@ -7,18 +7,20 @@
搜索
+
+
+
+
+
+
+
+ 同步数据
重置
-
- 导出
-
- 同步数据
-
-
@@ -39,7 +41,8 @@