学工发布通知前端页面的修改,用于管理通知,对整个年级发送的通知修改和删除;给学生证提交流程添加完成制作功能的前端的修改

This commit is contained in:
MDSMO
2025-08-12 17:36:08 +08:00
parent 2f6e3503ae
commit ad477813f3
9 changed files with 485 additions and 137 deletions

View File

@@ -2,12 +2,7 @@
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="内容" prop="content">
<el-input
v-model="queryParams.content"
placeholder="请输入通知内容"
clearable
@keyup.enter.native="handleQuery"
/>
<el-input v-model="queryParams.content" placeholder="请输入通知内容" clearable @keyup.enter.native="handleQuery" />
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
@@ -17,46 +12,20 @@
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['routine:NotificationManagement:add']"
>新增</el-button>
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
v-hasPermi="['routine:NotificationManagement:add']">新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['routine:NotificationManagement:edit']"
>修改</el-button>
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
v-hasPermi="['routine:NotificationManagement:edit']">修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['routine:NotificationManagement:remove']"
>删除</el-button>
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
v-hasPermi="['routine:NotificationManagement:remove']">删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['routine:NotificationManagement:export']"
>导出</el-button>
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
v-hasPermi="['routine:NotificationManagement:export']">导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
@@ -64,35 +33,21 @@
<el-table v-loading="loading" :data="NotificationManagementList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="序号" type="index" align="center" prop="id" />
<el-table-column label="收信人用户id" align="center" prop="receiver" />
<el-table-column label="年级" align="center" prop="gradeName" />
<el-table-column label="标题" align="center" prop="title" />
<el-table-column label="消息内容" align="center" prop="content" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['routine:NotificationManagement:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['routine:NotificationManagement:remove']"
>删除</el-button>
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
v-hasPermi="['routine:NotificationManagement:edit']">修改</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
v-hasPermi="['routine:NotificationManagement:remove']">删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
@pagination="getList" />
<!-- 添加或修改通知管理对话框 -->
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
@@ -103,31 +58,22 @@
<el-radio label="grade">按年级发送</el-radio>
</el-radio-group>
</el-form-item>
<!-- 年级多选 -->
<el-form-item
v-if="form.sendType === 'grade'"
label="选择年级"
prop="selectedGrades"
>
<el-select
v-model="form.selectedGrades"
multiple
placeholder="请选择年级"
style="width: 100%"
>
<el-option
v-for="grade in gradeList"
:key="grade.value"
:label="grade.label"
:value="grade.value"
/>
<el-form-item v-if="form.sendType === 'grade'" label="选择年级" prop="selectedGrades">
<el-select v-model="form.selectedGrades" multiple placeholder="请选择年级" style="width: 100%">
<el-option v-for="grade in gradeList" :key="grade.value" :label="grade.label" :value="grade.value" />
</el-select>
</el-form-item>
<el-form-item label="消息内容" prop="content">
<editor v-model="form.content" :min-height="192"/>
<el-form-item label="标题" prop="title">
<el-input v-model="form.title" placeholder="请输入标题" />
</el-form-item>
<el-form-item label="消息内容" prop="content">
<el-input v-model="form.content" type="textarea" :rows="4" placeholder="请输入消息内容" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">发送</el-button>
@@ -138,7 +84,7 @@
</template>
<script>
import { listNotificationManagement, getNotificationManagement, delNotificationManagement, addNotificationManagement, updateNotificationManagement, getGradeList, sendNotificationByGrades } from "@/api/routine/NotificationManagement";
import { listMySentNotifications, getNotificationManagement, delNotificationManagement, addNotificationManagement, updateNotificationManagement, getGradeList, sendNotificationByGrades } from "@/api/routine/NotificationManagement";
export default {
name: "NotificationManagement",
@@ -177,6 +123,9 @@ export default {
sendType: [
{ required: true, message: "请选择发送方式", trigger: "change" }
],
title: [
{ required: true, message: "请输入标题", trigger: "blur" }
],
content: [
{ required: true, message: "请输入消息内容", trigger: "blur" }
]
@@ -188,10 +137,10 @@ export default {
this.getGradeList();
},
methods: {
/** 查询通知管理列表 */
/** 查询当前用户通知管理列表 */
getList() {
this.loading = true;
listNotificationManagement(this.queryParams).then(response => {
listMySentNotifications(this.queryParams).then(response => {
this.NotificationManagementList = response.rows;
this.total = response.total;
this.loading = false;
@@ -208,6 +157,7 @@ export default {
id: null,
sender: null,
receiver: null,
title: null,
content: null,
sendType: 'user',
selectedGrades: [],
@@ -231,7 +181,7 @@ export default {
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.single = selection.length !== 1
this.multiple = !selection.length
},
/** 新增按钮操作 */
@@ -263,7 +213,7 @@ export default {
this.$modal.msgError("请选择年级");
return;
}
if (this.form.id != null) {
// 修改操作
updateNotificationManagement(this.form).then(response => {
@@ -272,11 +222,23 @@ export default {
this.getList();
});
} else {
// 新增操作
// 新增操作
if (this.form.sendType === 'grade') {
// 按年级发送
// 创建一个临时div来提取纯文本
const tempDiv = document.createElement('div');
tempDiv.innerHTML = this.form.content;
const plainText = tempDiv.textContent || tempDiv.innerText || '';
// 提取标题的纯文本
const titleDiv = document.createElement('div');
titleDiv.innerHTML = this.form.title || '';
const plainTitle = titleDiv.textContent || titleDiv.innerText || '';
const data = {
content: this.form.content,
title: plainTitle, // 添加标题字段
content: plainText, // 使用纯文本
selectedGrades: this.form.selectedGrades
};
sendNotificationByGrades(data).then(response => {
@@ -284,7 +246,7 @@ export default {
this.open = false;
this.getList();
});
}
}
}
}
});
@@ -292,12 +254,12 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除通知管理编号为"' + ids + '"的数据项?').then(function() {
this.$modal.confirm('是否确认删除通知管理编号为"' + ids + '"的数据项?').then(function () {
return delNotificationManagement(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
}).catch(() => { });
},
/** 导出按钮操作 */
handleExport() {
@@ -305,7 +267,7 @@ export default {
...this.queryParams
}, `NotificationManagement_${new Date().getTime()}.xlsx`)
},
/** 获取年级列表 */
getGradeList() {
getGradeList().then(response => {
@@ -324,7 +286,7 @@ export default {
];
});
},
/** 发送方式改变时的处理 */
handleSendTypeChange(value) {
// 清空相关字段
@@ -333,7 +295,7 @@ export default {
} else if (value === 'grade') {
this.form.receiver = null;
}
// 重新设置表单验证规则
this.$nextTick(() => {
this.$refs.form && this.$refs.form.clearValidate();