From c5a0867f76adb67aa1b240a085c108adc4abb664 Mon Sep 17 00:00:00 2001
From: 18154758993 <605281283@qq.com>
Date: Mon, 5 Jan 2026 15:16:54 +0800
Subject: [PATCH] =?UTF-8?q?=E7=8F=AD=E4=BC=9A=E6=9D=90=E6=96=99=E6=90=9C?=
=?UTF-8?q?=E7=B4=A2=E5=A2=9E=E5=8A=A0=E5=AD=A6=E9=99=A2=E6=90=9C=E7=B4=A2?=
=?UTF-8?q?=E6=9D=A1=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/poverty/povertyapply/xwjl.vue | 10 +++---
.../routine/classmetting/cadownload/index.vue | 32 +++++++++++++------
2 files changed, 27 insertions(+), 15 deletions(-)
diff --git a/src/views/poverty/povertyapply/xwjl.vue b/src/views/poverty/povertyapply/xwjl.vue
index 15a3e98..fd1d486 100644
--- a/src/views/poverty/povertyapply/xwjl.vue
+++ b/src/views/poverty/povertyapply/xwjl.vue
@@ -68,7 +68,7 @@
- (
+ (
{{ key }}
@@ -78,7 +78,7 @@
{{ value }}
- )
+ )
@@ -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()