🎨 新增公告通知模块

This commit is contained in:
loser 2025-05-10 03:30:34 +08:00
parent e0868a10af
commit 639e46094d
4 changed files with 669 additions and 1 deletions

110
src/api/notice/notice.js Normal file
View File

@ -0,0 +1,110 @@
import service from '@/utils/request'
// @Tags Notice
// @Summary 创建通知
// @Security ApiKeyAuth
// @Accept application/json
// @Produce application/json
// @Param data body model.Notice true "创建通知"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"创建成功"}"
// @Router /not/createNotice [post]
export const createNotice = (data) => {
return service({
url: '/not/createNotice',
method: 'post',
data
})
}
// @Tags Notice
// @Summary 删除通知
// @Security ApiKeyAuth
// @Accept application/json
// @Produce application/json
// @Param data body model.Notice true "删除通知"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
// @Router /not/deleteNotice [delete]
export const deleteNotice = (params) => {
return service({
url: '/not/deleteNotice',
method: 'delete',
params
})
}
// @Tags Notice
// @Summary 批量删除通知
// @Security ApiKeyAuth
// @Accept application/json
// @Produce application/json
// @Param data body request.IdsReq true "批量删除通知"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"删除成功"}"
// @Router /not/deleteNotice [delete]
export const deleteNoticeByIds = (params) => {
return service({
url: '/not/deleteNoticeByIds',
method: 'delete',
params
})
}
// @Tags Notice
// @Summary 更新通知
// @Security ApiKeyAuth
// @Accept application/json
// @Produce application/json
// @Param data body model.Notice true "更新通知"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"更新成功"}"
// @Router /not/updateNotice [put]
export const updateNotice = (data) => {
return service({
url: '/not/updateNotice',
method: 'put',
data
})
}
// @Tags Notice
// @Summary 用id查询通知
// @Security ApiKeyAuth
// @Accept application/json
// @Produce application/json
// @Param data query model.Notice true "用id查询通知"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"查询成功"}"
// @Router /not/findNotice [get]
export const findNotice = (params) => {
return service({
url: '/not/findNotice',
method: 'get',
params
})
}
// @Tags Notice
// @Summary 分页获取通知列表
// @Security ApiKeyAuth
// @Accept application/json
// @Produce application/json
// @Param data query request.PageInfo true "分页获取通知列表"
// @Success 200 {string} string "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /not/getNoticeList [get]
export const getNoticeList = (params) => {
return service({
url: '/not/getNoticeList',
method: 'get',
params
})
}
// @Tags Notice
// @Summary 不需要鉴权的通知接口
// @Accept application/json
// @Produce application/json
// @Param data query noticeReq.NoticeSearch true "分页获取通知列表"
// @Success 200 {object} response.Response{data=object,msg=string} "获取成功"
// @Router /not/getNoticePublic [get]
export const getNoticePublic = () => {
return service({
url: '/not/getNoticePublic',
method: 'get',
})
}

View File

@ -7,7 +7,7 @@ import service from '@/utils/request'
// @router get /user/list
export const list = (params) => {
return service({
url: '/user/list',
url: '/app_user/list',
method: 'get',
params
})

View File

@ -0,0 +1,436 @@
<template>
<div>
<div class="gva-search-box">
<el-form ref="elSearchFormRef" :inline="true" :model="searchInfo" class="demo-form-inline" :rules="searchRule" @keyup.enter="onSubmit">
<el-form-item label="创建日期" prop="createdAt">
<template #label>
<span>
创建日期
<el-tooltip content="搜索范围是开始日期(包含)至结束日期(不包含)">
<el-icon><QuestionFilled /></el-icon>
</el-tooltip>
</span>
</template>
<el-date-picker v-model="searchInfo.startCreatedAt" type="datetime" placeholder="开始日期" :disabled-date="time=> searchInfo.endCreatedAt ? time.getTime() > searchInfo.endCreatedAt.getTime() : false"></el-date-picker>
<el-date-picker v-model="searchInfo.endCreatedAt" type="datetime" placeholder="结束日期" :disabled-date="time=> searchInfo.startCreatedAt ? time.getTime() < searchInfo.startCreatedAt.getTime() : false"></el-date-picker>
</el-form-item>
<template v-if="showAllQuery">
<!-- 将需要控制显示状态的查询条件添加到此范围内 -->
</template>
<el-form-item>
<el-button type="primary" icon="search" @click="onSubmit">查询</el-button>
<el-button icon="refresh" @click="onReset">重置</el-button>
<el-button link type="primary" icon="arrow-down" @click="showAllQuery=true" v-if="!showAllQuery">展开</el-button>
<el-button link type="primary" icon="arrow-up" @click="showAllQuery=false" v-else>收起</el-button>
</el-form-item>
</el-form>
</div>
<div class="gva-table-box">
<div class="gva-btn-list">
<el-button type="primary" icon="plus" @click="openDialog()">新增</el-button>
<el-button icon="delete" style="margin-left: 10px;" :disabled="!multipleSelection.length" @click="onDelete">删除</el-button>
</div>
<el-table
ref="multipleTable"
style="width: 100%"
tooltip-effect="dark"
:data="tableData"
row-key="ID"
@selection-change="handleSelectionChange"
@sort-change="sortChange"
>
<el-table-column type="selection" width="55" />
<el-table-column align="left" label="日期" prop="createdAt"width="180">
<template #default="scope">{{ formatDate(scope.row.CreatedAt) }}</template>
</el-table-column>
<el-table-column sortable align="left" label="标题" prop="title" width="120" />
<el-table-column label="内容" prop="content" width="200">
<template #default="scope">
[富文本内容]
</template>
</el-table-column>
<el-table-column align="left" label="状态" prop="status" width="120" />
<el-table-column align="left" label="操作" fixed="right" :min-width="appStore.operateMinWith">
<template #default="scope">
<el-button type="primary" link class="table-button" @click="getDetails(scope.row)"><el-icon style="margin-right: 5px"><InfoFilled /></el-icon></el-button>
<el-button type="primary" link icon="edit" class="table-button" @click="updateNoticeFunc(scope.row)">编辑</el-button>
<el-button type="primary" link icon="delete" @click="deleteRow(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
<div class="gva-pagination">
<el-pagination
layout="total, sizes, prev, pager, next, jumper"
:current-page="page"
:page-size="pageSize"
:page-sizes="[10, 30, 50, 100]"
:total="total"
@current-change="handleCurrentChange"
@size-change="handleSizeChange"
/>
</div>
</div>
<el-drawer destroy-on-close :size="appStore.drawerSize" v-model="dialogFormVisible" :show-close="false" :before-close="closeDialog">
<template #header>
<div class="flex justify-between items-center">
<span class="text-lg">{{type==='create'?'新增':'编辑'}}</span>
<div>
<el-button :loading="btnLoading" type="primary" @click="enterDialog"> </el-button>
<el-button @click="closeDialog"> </el-button>
</div>
</div>
</template>
<el-form :model="formData" label-position="top" ref="elFormRef" :rules="rule" label-width="80px">
<el-form-item label="标题:" prop="title" >
<el-input v-model="formData.title" :clearable="false" placeholder="请输入标题" />
</el-form-item>
<el-form-item label="内容:" prop="content" >
<RichEdit v-model="formData.content"/>
</el-form-item>
<el-form-item label="状态:" prop="status" >
<el-input v-model.number="formData.status" :clearable="true" placeholder="请输入状态" />
</el-form-item>
</el-form>
</el-drawer>
<el-drawer destroy-on-close :size="appStore.drawerSize" v-model="detailShow" :show-close="true" :before-close="closeDetailShow" title="查看">
<el-descriptions :column="1" border>
<el-descriptions-item label="标题">
{{ detailFrom.title }}
</el-descriptions-item>
<el-descriptions-item label="内容">
<RichView v-model="detailFrom.content" />
</el-descriptions-item>
<el-descriptions-item label="状态">
{{ detailFrom.status }}
</el-descriptions-item>
</el-descriptions>
</el-drawer>
</div>
</template>
<script setup>
import {
createNotice,
deleteNotice,
deleteNoticeByIds,
updateNotice,
findNotice,
getNoticeList
} from '@/api/notice/notice'
//
import RichEdit from '@/components/richtext/rich-edit.vue'
import RichView from '@/components/richtext/rich-view.vue'
//
import { getDictFunc, formatDate, formatBoolean, filterDict ,filterDataSource, returnArrImg, onDownloadFile } from '@/utils/format'
import { ElMessage, ElMessageBox } from 'element-plus'
import { ref, reactive } from 'vue'
import { useAppStore } from "@/pinia"
defineOptions({
name: 'Notice'
})
// loading
const btnLoading = ref(false)
const appStore = useAppStore()
// /
const showAllQuery = ref(false)
//
const formData = ref({
title: '',
content: '',
status: undefined,
})
//
const rule = reactive({
title : [{
required: true,
message: '',
trigger: ['input','blur'],
},
{
whitespace: true,
message: '不能只输入空格',
trigger: ['input', 'blur'],
}
],
content : [{
required: true,
message: '',
trigger: ['input','blur'],
},
],
})
const searchRule = reactive({
createdAt: [
{ validator: (rule, value, callback) => {
if (searchInfo.value.startCreatedAt && !searchInfo.value.endCreatedAt) {
callback(new Error('请填写结束日期'))
} else if (!searchInfo.value.startCreatedAt && searchInfo.value.endCreatedAt) {
callback(new Error('请填写开始日期'))
} else if (searchInfo.value.startCreatedAt && searchInfo.value.endCreatedAt && (searchInfo.value.startCreatedAt.getTime() === searchInfo.value.endCreatedAt.getTime() || searchInfo.value.startCreatedAt.getTime() > searchInfo.value.endCreatedAt.getTime())) {
callback(new Error('开始日期应当早于结束日期'))
} else {
callback()
}
}, trigger: 'change' }
],
})
const elFormRef = ref()
const elSearchFormRef = ref()
// =========== ===========
const page = ref(1)
const total = ref(0)
const pageSize = ref(10)
const tableData = ref([])
const searchInfo = ref({})
//
const sortChange = ({ prop, order }) => {
const sortMap = {
title: 'title',
}
let sort = sortMap[prop]
if(!sort){
sort = prop.replace(/[A-Z]/g, match => `_${match.toLowerCase()}`)
}
searchInfo.value.sort = sort
searchInfo.value.order = order
getTableData()
}
//
const onReset = () => {
searchInfo.value = {}
getTableData()
}
//
const onSubmit = () => {
elSearchFormRef.value?.validate(async(valid) => {
if (!valid) return
page.value = 1
getTableData()
})
}
//
const handleSizeChange = (val) => {
pageSize.value = val
getTableData()
}
//
const handleCurrentChange = (val) => {
page.value = val
getTableData()
}
//
const getTableData = async() => {
const table = await getNoticeList({ page: page.value, pageSize: pageSize.value, ...searchInfo.value })
if (table.code === 0) {
tableData.value = table.data.list
total.value = table.data.total
page.value = table.data.page
pageSize.value = table.data.pageSize
}
}
getTableData()
// ============== ===============
//
const setOptions = async () =>{
}
//
setOptions()
//
const multipleSelection = ref([])
//
const handleSelectionChange = (val) => {
multipleSelection.value = val
}
//
const deleteRow = (row) => {
ElMessageBox.confirm('确定要删除吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
deleteNoticeFunc(row)
})
}
//
const onDelete = async() => {
ElMessageBox.confirm('确定要删除吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async() => {
const IDs = []
if (multipleSelection.value.length === 0) {
ElMessage({
type: 'warning',
message: '请选择要删除的数据'
})
return
}
multipleSelection.value &&
multipleSelection.value.map(item => {
IDs.push(item.ID)
})
const res = await deleteNoticeByIds({ IDs })
if (res.code === 0) {
ElMessage({
type: 'success',
message: '删除成功'
})
if (tableData.value.length === IDs.length && page.value > 1) {
page.value--
}
getTableData()
}
})
}
//
const type = ref('')
//
const updateNoticeFunc = async(row) => {
const res = await findNotice({ ID: row.ID })
type.value = 'update'
if (res.code === 0) {
formData.value = res.data
dialogFormVisible.value = true
}
}
//
const deleteNoticeFunc = async (row) => {
const res = await deleteNotice({ ID: row.ID })
if (res.code === 0) {
ElMessage({
type: 'success',
message: '删除成功'
})
if (tableData.value.length === 1 && page.value > 1) {
page.value--
}
getTableData()
}
}
//
const dialogFormVisible = ref(false)
//
const openDialog = () => {
type.value = 'create'
dialogFormVisible.value = true
}
//
const closeDialog = () => {
dialogFormVisible.value = false
formData.value = {
title: '',
content: '',
status: undefined,
}
}
//
const enterDialog = async () => {
btnLoading.value = true
elFormRef.value?.validate( async (valid) => {
if (!valid) return btnLoading.value = false
let res
switch (type.value) {
case 'create':
res = await createNotice(formData.value)
break
case 'update':
res = await updateNotice(formData.value)
break
default:
res = await createNotice(formData.value)
break
}
btnLoading.value = false
if (res.code === 0) {
ElMessage({
type: 'success',
message: '创建/更改成功'
})
closeDialog()
getTableData()
}
})
}
const detailFrom = ref({})
//
const detailShow = ref(false)
//
const openDetailShow = () => {
detailShow.value = true
}
//
const getDetails = async (row) => {
//
const res = await findNotice({ ID: row.ID })
if (res.code === 0) {
detailFrom.value = res.data
openDetailShow()
}
}
//
const closeDetailShow = () => {
detailShow.value = false
detailFrom.value = {}
}
</script>
<style>
</style>

View File

@ -0,0 +1,122 @@
<template>
<div>
<div class="gva-form-box">
<el-form :model="formData" ref="elFormRef" label-position="right" :rules="rule" label-width="80px">
<el-form-item label="标题:" prop="title">
<el-input v-model="formData.title" :clearable="false" placeholder="请输入标题" />
</el-form-item>
<el-form-item label="内容:" prop="content">
<RichEdit v-model="formData.content"/>
</el-form-item>
<el-form-item label="状态:" prop="status">
<el-input v-model.number="formData.status" :clearable="true" placeholder="请输入" />
</el-form-item>
<el-form-item>
<el-button :loading="btnLoading" type="primary" @click="save">保存</el-button>
<el-button type="primary" @click="back">返回</el-button>
</el-form-item>
</el-form>
</div>
</div>
</template>
<script setup>
import {
createNotice,
updateNotice,
findNotice
} from '@/api/notice/notice'
defineOptions({
name: 'NoticeForm'
})
//
import { getDictFunc } from '@/utils/format'
import { useRoute, useRouter } from "vue-router"
import { ElMessage } from 'element-plus'
import { ref, reactive } from 'vue'
//
import RichEdit from '@/components/richtext/rich-edit.vue'
const route = useRoute()
const router = useRouter()
// loading
const btnLoading = ref(false)
const type = ref('')
const formData = ref({
title: '',
content: '',
status: undefined,
})
//
const rule = reactive({
title : [{
required: true,
message: '',
trigger: ['input','blur'],
}],
content : [{
required: true,
message: '',
trigger: ['input','blur'],
}],
})
const elFormRef = ref()
//
const init = async () => {
// urlID find createupdate idurl
if (route.query.id) {
const res = await findNotice({ ID: route.query.id })
if (res.code === 0) {
formData.value = res.data
type.value = 'update'
}
} else {
type.value = 'create'
}
}
init()
//
const save = async() => {
btnLoading.value = true
elFormRef.value?.validate( async (valid) => {
if (!valid) return btnLoading.value = false
let res
switch (type.value) {
case 'create':
res = await createNotice(formData.value)
break
case 'update':
res = await updateNotice(formData.value)
break
default:
res = await createNotice(formData.value)
break
}
btnLoading.value = false
if (res.code === 0) {
ElMessage({
type: 'success',
message: '创建/更改成功'
})
}
})
}
//
const back = () => {
router.go(-1)
}
</script>
<style>
</style>