This commit is contained in:
Air 2025-03-07 16:47:46 +08:00
parent 8b16d07971
commit a0070aa65d
8 changed files with 1357 additions and 979 deletions

2
auto-imports.d.ts vendored
View File

@ -1,5 +1,5 @@
// Generated by 'unplugin-auto-import'
export {}
declare global {
const layer: typeof import('@layui/layer-vue')['layer']
}

1704
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,8 +11,7 @@
},
"dependencies": {
"@layui/layui-vue": "2.21.1",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-vue": "^5.1.12",
"@vueup/vue-quill": "^1.2.0",
"axios": "^1.5.1",
"echarts": "^5.4.3",
"js-base64": "^3.7.2",
@ -20,6 +19,7 @@
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"quill": "^2.0.3",
"vue": "^3.3.4",
"vue-router": "^4.2.5",
"vue3-puzzle-vcode": "^1.1.7"

View File

@ -6,16 +6,21 @@ import router from '../router'
type TAxiosOption = {
timeout: number;
baseURL: string;
headers: object;
}
//记得修改上传路径/api/common/upload
//const baseURL = 'http://yfyd.hschool.com.cn' // 设置基础URL前缀
const baseURL="/api";
// 导出baseURL使其可以在其他页面使用
export { baseURL };
const config: TAxiosOption = {
timeout: 5000,
baseURL: baseURL,
headers:{
'content-type':'application/x-www-form-urlencoded'
}
}
class Http {

View File

@ -342,6 +342,11 @@ export function noticeDelete(data: any) {
return Http.post('/api/backend/public_announcement/delete', data)
}
// 上传图片
export function uploadImage(data: any) {
return Http.post('/api/common/upload', data)
}

View File

@ -0,0 +1,207 @@
<template>
<div class="editor">
<!-- 这两个都是获取值的必要条件 v-model:content contentType="html" -->
<quill-editor
ref="editorRef"
v-model:content="content"
:options="options"
contentType="html"
></quill-editor>
</div>
</template>
<script setup lang="ts">
//
import { Quill, QuillEditor } from '@vueup/vue-quill'
import '@vueup/vue-quill/dist/vue-quill.snow.css'
//
import BlotFormatter from 'quill-blot-formatter'
Quill.register('modules/blotFormatter', BlotFormatter)
const content = ref('')
const editorRef = ref(null)
//
const options = ref({
theme: 'snow', // 使snow
modules: {
//
toolbar: {
container: [
['bold', 'italic', 'underline', 'strike'], // 线 线
[{ color: [] }, { background: [] }], //
[{ align: [] }], //
[{ size: ['small', false, 'large', 'huge'] }], //
[{ font: [] }], //
[{ header: [1, 2, 3, 4, 5, 6, false] }], //
[{ direction: 'ltl' }], //
[{ direction: 'rtl' }], //
[{ indent: '-1' }, { indent: '+1' }], //
[{ list: 'ordered' }, { list: 'bullet' }], //
[{ script: 'sub' }, { script: 'super' }], // /
['blockquote', 'code-block'], //
['clean'], //
['link', 'image', 'video'], //
],
handlers: {
image: imageHandler, //
},
},
//
blotFormatter: {
//
// overlay: {
// style: {
// border: '2px solid red',
// }
// },
toolbar: {
mainClassName: 'blot-formatter__toolbar'
}
}
}
})
// imageHandler options
//
const imageHandler = () => {
//
const input = document.createElement('input');
input.setAttribute('type', 'file');
input.setAttribute('accept', 'image/*');
//
input.click();
//
input.onchange = async () => {
//
const file = input.files ? input.files[0] : null;
if (file) {
// FormData
const formData = new FormData();
formData.append('file', file);
try {
/**
* @todo 可以选中图片然后把file文件给后端后端给存到文件服务器然后返回一个线上地址
* 这里的abc替换成你的请求接口方法,也可以使用 axios 发送 POST 请求
* */
// todo
// 使 axios POST ,abc
// file线
const res = await abc(formData);
// Quill
const quill = toRaw(editorRef.value).getQuill()
if (quill) {
//
const range = quill.getSelection(true);
//
quill.insertEmbed(range.index, 'image', res.data);
}
} catch (error) {
alert('图片上传失败')
}
}
};
}
// toolbar,
const titleConfig = [
{ Choice: '.ql-insertMetric', title: '跳转配置' },
{ Choice: '.ql-bold', title: '加粗' },
{ Choice: '.ql-italic', title: '斜体' },
{ Choice: '.ql-underline', title: '下划线' },
{ Choice: '.ql-header', title: '段落格式' },
{ Choice: '.ql-strike', title: '删除线' },
{ Choice: '.ql-blockquote', title: '块引用' },
{ Choice: '.ql-code', title: '插入代码' },
{ Choice: '.ql-code-block', title: '插入代码段' },
{ Choice: '.ql-font', title: '字体' },
{ Choice: '.ql-size', title: '字体大小' },
{ Choice: '.ql-list[value="ordered"]', title: '编号列表' },
{ Choice: '.ql-list[value="bullet"]', title: '项目列表' },
{ Choice: '.ql-direction', title: '文本方向' },
{ Choice: '.ql-header[value="1"]', title: 'h1' },
{ Choice: '.ql-header[value="2"]', title: 'h2' },
{ Choice: '.ql-align', title: '对齐方式' },
{ Choice: '.ql-color', title: '字体颜色' },
{ Choice: '.ql-background', title: '背景颜色' },
{ Choice: '.ql-image', title: '图像' },
{ Choice: '.ql-video', title: '视频' },
{ Choice: '.ql-link', title: '添加链接' },
{ Choice: '.ql-formula', title: '插入公式' },
{ Choice: '.ql-clean', title: '清除字体格式' },
{ Choice: '.ql-script[value="sub"]', title: '下标' },
{ Choice: '.ql-script[value="super"]', title: '上标' },
{ Choice: '.ql-indent[value="-1"]', title: '向左缩进' },
{ Choice: '.ql-indent[value="+1"]', title: '向右缩进' },
{ Choice: '.ql-header .ql-picker-label', title: '标题大小' },
{ Choice: '.ql-header .ql-picker-item[data-value="1"]', title: '标题一' },
{ Choice: '.ql-header .ql-picker-item[data-value="2"]', title: '标题二' },
{ Choice: '.ql-header .ql-picker-item[data-value="3"]', title: '标题三' },
{ Choice: '.ql-header .ql-picker-item[data-value="4"]', title: '标题四' },
{ Choice: '.ql-header .ql-picker-item[data-value="5"]', title: '标题五' },
{ Choice: '.ql-header .ql-picker-item[data-value="6"]', title: '标题六' },
{ Choice: '.ql-header .ql-picker-item:last-child', title: '标准' },
{ Choice: '.ql-size .ql-picker-item[data-value="small"]', title: '小号' },
{ Choice: '.ql-size .ql-picker-item[data-value="large"]', title: '大号' },
{ Choice: '.ql-size .ql-picker-item[data-value="huge"]', title: '超大号' },
{ Choice: '.ql-size .ql-picker-item:nth-child(2)', title: '标准' },
{ Choice: '.ql-align .ql-picker-item:first-child', title: '居左对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="center"]', title: '居中对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="right"]', title: '居右对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="justify"]', title: '两端对齐' }
]
//
const initTitle = () => {
for (let item of titleConfig) {
// .editor
let tip = document.querySelector('.editor ' + item.Choice);
if (tip) {
tip.setAttribute('title', item.title);
}
}
}
//
const customPaste=(e)=>{
//
let newTime = new Date().getTime()
const clipboardData = e.clipboardData //
const types = clipboardData.types //
if (types.includes('Files')) {
e.preventDefault();
e.clipboardData.files.forEach(file=>{
//
//
})
}
}
onMounted(()=>{
nextTick(()=>{
//
initTitle()
})
//
editorRef.value.getQuill().root.addEventListener('customPaste', customPaste, false)
})
</script>
<style scoped lang="scss">
.editor{
width: 100%;
:deep(.ql-editor) {
min-height: 200px;
}
}
</style>

View File

@ -6,9 +6,19 @@
<template #title>
<div style="font-size: 16px; font-weight: bold;">通知公告</div>
</template>
<lay-table :page="page" size="lg" height="600px" :columns="columns" :data-source="dataSource" @row-click="handleRowClick">
<lay-table
:page="page"
size="lg"
height="600px"
:columns="columns"
:data-source="dataSource"
@page-change="changePage"
>
<template v-slot:content="{ data }">
<div v-html="data.content"></div>
</template>
<template #operation="{ data }">
<span style="color: #00A394;cursor: pointer" @click.stop="handleViewDetail(data)">查看详情</span>
<span style="color: #00A394;cursor: pointer" @click.stop="handleViewDetail(data)">查看详情</span>
</template>
</lay-table>
</lay-card>
@ -20,11 +30,10 @@
<div class="notice-detail">
<h2>{{ currentNotice?.title }}</h2>
<div class="notice-info">
<span>发布时间{{ currentNotice?.publishTime }}</span>
<span>发布部门{{ currentNotice?.department }}</span>
<span>发布时间{{ currentNotice?.createtime }}</span>
<span>发布{{ currentNotice?.author }}</span>
</div>
<div class="notice-content">
{{ currentNotice?.content }}
<div class="notice-content" v-html="currentNotice?.content">
</div>
</div>
</lay-layer>
@ -32,87 +41,92 @@
</template>
<script setup lang="ts">
import { defineComponent, reactive, ref } from "vue";
import { defineComponent, reactive, ref, onMounted } from "vue";
import { noticeList } from '../../api/module/home';
import { layer } from '@layui/layer-vue';
interface Notice {
id: number;
title: string;
department: string;
publishTime: string;
author: string;
content: string;
createtime: string;
status: number;
}
//
const page = reactive({
current: 1,
limit: 10,
total: 1
})
//
const columns = [
{
title: "标题",
key: "title",
width: "40%"
},
{
title: "发布部门",
key: "department",
},
{
title: "发布时间",
key: "publishTime"
},
{
title: "操作",
key: "operation",
width: "120px",
customSlot: "operation"
}
];
current: 1,
limit: 10,
total: 1
});
//
const dataSource = ref<Notice[]>([
{
id: 1,
title: "关于开展2024年第二季度医德医风考核的通知",
department: "医务科",
publishTime: "2024-03-15",
content: "根据医院年度工作计划定于2024年第二季度开展医德医风考核工作。请各科室做好相关准备工作具体考核细则详见附件。考核时间2024年4月1日至4月15日..."
},
{
id: 2,
title: "医院感染防控培训通知",
department: "感染管理科",
publishTime: "2024-03-14",
content: "为进一步加强医院感染防控工作提高全院医务人员防控意识和操作规范性定于2024年3月20日下午14:00在第一会议室开展感染防控培训..."
},
{
id: 3,
title: "关于调整门诊工作时间的通知",
department: "院办公室",
publishTime: "2024-03-13",
content: "为更好地服务患者经医院研究决定自2024年4月1日起调整门诊工作时间。调整后的工作时间为周一至周五 8:00-17:30周六、周日 8:30-12:00..."
}
]);
const columns = [
{
title: "公告标题",
width: "180px",
key: "title"
},
{
title: "作者",
width: "120px",
key: "author"
},
{
title: "公告内容",
width: "280px",
key: "content",
customSlot: 'content',
ellipsisTooltip: true
},
{
title: "发布时间",
width: "180px",
key: "createtime"
},
{
title: '操作',
width: '120px',
customSlot: 'operation',
key: 'operation',
align: 'center',
fixed: 'right'
}
];
//
const showDetail = ref(false);
//
const currentNotice = ref<Notice | null>(null);
//
const detailTitle = ref('');
const dataSource = ref<Notice[]>([]);
//
const handleViewDetail = (row: Notice) => {
currentNotice.value = row;
detailTitle.value = row.title;
showDetail.value = true;
};
//
const showDetail = ref(false);
//
const currentNotice = ref<Notice | null>(null);
//
const handleRowClick = (row: Notice) => {
handleViewDetail(row);
};
//
const getNoticeList = () => {
noticeList({ page: page.current, size: page.limit }).then((res) => {
if (res.code == 1) {
dataSource.value = res.data.data.filter((item: Notice) => item.status === 1);
page.total = res.data.count;
} else {
layer.msg(res.msg, { icon: 2 })
}
})
}
//
const changePage = (currentPage: number) => {
page.current = currentPage;
getNoticeList();
}
//
const handleViewDetail = (row: Notice) => {
currentNotice.value = row;
showDetail.value = true;
};
onMounted(() => {
getNoticeList();
});
</script>
<style lang="less" scoped>

View File

@ -6,9 +6,12 @@
<lay-button type="primary" @click="openNew()" size="sm">新增公告</lay-button>
</div>
<lay-table :page="page" height="600px" size="lg" :columns="columns" :data-source="dataSource">
<template v-slot:content="{ data }">
<div v-html="data.content"></div>
</template>
<template v-slot:status="{ data }">
<span v-if="data.status == 1">已发布</span>
<span v-if="data.status == 0">未发布</span>
<span v-if="data.status == 0">已隐藏</span>
</template>
<template v-slot:operator="{ data }">
<lay-space size="lg">
@ -31,10 +34,10 @@
<lay-input v-model="addData.author" placeholder="请输入作者"></lay-input>
</lay-form-item>
<lay-form-item required label="公告内容" prop="content">
<div style="border: 1px solid #ccc">
<Toolbar style="border-bottom: 1px solid #ccc" :editor="editorRef" :defaultConfig="toolbarConfig"
mode="default" />
<Editor style="height: 500px; " @onCreated="(e) => onCreated(e)" v-model="valueHtml" :defaultConfig="editorConfig" mode="default" />
<div class="editor">
<!-- 这两个都是获取值的必要条件 v-model:content contentType="html" -->
<quill-editor ref="editorRef" v-model:content="content" :options="options"
contentType="html"></quill-editor>
</div>
</lay-form-item>
<lay-form-item required label="状态" prop="status">
@ -54,48 +57,170 @@ import {
noticeAdd,
noticeList,
noticeEdit,
noticeDelete
noticeDelete,
uploadImage
} from '../../api/module/home'
import { ref, onMounted, reactive, shallowRef, watch } from 'vue'
import { ref, onMounted, reactive, shallowRef, watch, nextTick, toRaw } from 'vue'
import { layer } from '@layui/layer-vue'
import {Editor, Toolbar} from '@wangeditor/editor-for-vue';
import { baseURL } from '@/api/http'
// Update editor configuration
const toolbarConfig = {
showLinkImg: false,
uploadImgShowBase64: true,
excludeKeys: [
'insertVideo',
'uploadVideo',
'group-video',
'insertLink',
'insertTable',
'codeBlock',
]
//
import { Quill, QuillEditor } from '@vueup/vue-quill'
import '@vueup/vue-quill/dist/vue-quill.snow.css'
const content = ref('')
const editorRef = ref<any>(null)
// imageHandler options
//
const imageHandler = () => {
//
const input = document.createElement('input');
input.setAttribute('type', 'file');
input.setAttribute('accept', 'image/*');
//
input.click();
//
input.onchange = async () => {
//
const file = input.files ? input.files[0] : null;
if (file) {
// FormData
const formData = new FormData();
formData.append('file', file);
try {
/**
* @todo 可以选中图片然后把file文件给后端后端给存到文件服务器然后返回一个线上地址
* 这里的abc替换成你的请求接口方法,也可以使用 axios 发送 POST 请求
* */
// todo
// 使 axios POST ,abc
// file线
const res = await uploadImage(formData);
// Quill
const quill = toRaw(editorRef.value).getQuill()
if (quill) {
//
const range = quill.getSelection(true);
//
quill.insertEmbed(range.index, 'image', res.data.fullurl);
}
} catch (error) {
alert('图片上传失败')
}
}
};
}
const editorConfig = {
placeholder: '',
readOnly: false,
autoFocus: true,
MENU_CONF: {
uploadImage: {
maxFileSize: 50 * 1024 * 1024, // 50MB
server: '/api/common/upload',
fieldName: 'file',
meta: {
association_id: 0,
},
customInsert(res: any, insertFn: any) {
console.log(res);
insertFn(res.data.fullurl, '', '')
//
const options = ref({
theme: 'bubble', // 使snow
modules: {
//
toolbar: {
container: [
['bold', 'italic', 'underline', 'strike'], // 线 线
[{ color: [] }, { background: [] }], //
[{ align: [] }], //
[{ size: ['small', false, 'large', 'huge'] }], //
[{ font: [] }], //
[{ header: [1, 2, 3, 4, 5, 6, false] }], //
[{ direction: 'ltl' }], //
[{ direction: 'rtl' }], //
[{ indent: '-1' }, { indent: '+1' }], //
[{ list: 'ordered' }, { list: 'bullet' }], //
[{ script: 'sub' }, { script: 'super' }], // /
['blockquote', 'code-block'], //
['clean'], //
['link', 'image', 'video'], //
],
handlers: {
image: imageHandler, //
},
},
}
})
// toolbar,
const titleConfig = [
{ Choice: '.ql-insertMetric', title: '跳转配置' },
{ Choice: '.ql-bold', title: '加粗' },
{ Choice: '.ql-italic', title: '斜体' },
{ Choice: '.ql-underline', title: '下划线' },
{ Choice: '.ql-header', title: '段落格式' },
{ Choice: '.ql-strike', title: '删除线' },
{ Choice: '.ql-blockquote', title: '块引用' },
{ Choice: '.ql-code', title: '插入代码' },
{ Choice: '.ql-code-block', title: '插入代码段' },
{ Choice: '.ql-font', title: '字体' },
{ Choice: '.ql-size', title: '字体大小' },
{ Choice: '.ql-list[value="ordered"]', title: '编号列表' },
{ Choice: '.ql-list[value="bullet"]', title: '项目列表' },
{ Choice: '.ql-direction', title: '文本方向' },
{ Choice: '.ql-header[value="1"]', title: 'h1' },
{ Choice: '.ql-header[value="2"]', title: 'h2' },
{ Choice: '.ql-align', title: '对齐方式' },
{ Choice: '.ql-color', title: '字体颜色' },
{ Choice: '.ql-background', title: '背景颜色' },
{ Choice: '.ql-image', title: '图像' },
{ Choice: '.ql-video', title: '视频' },
{ Choice: '.ql-link', title: '添加链接' },
{ Choice: '.ql-formula', title: '插入公式' },
{ Choice: '.ql-clean', title: '清除字体格式' },
{ Choice: '.ql-script[value="sub"]', title: '下标' },
{ Choice: '.ql-script[value="super"]', title: '上标' },
{ Choice: '.ql-indent[value="-1"]', title: '向左缩进' },
{ Choice: '.ql-indent[value="+1"]', title: '向右缩进' },
{ Choice: '.ql-header .ql-picker-label', title: '标题大小' },
{ Choice: '.ql-header .ql-picker-item[data-value="1"]', title: '标题一' },
{ Choice: '.ql-header .ql-picker-item[data-value="2"]', title: '标题二' },
{ Choice: '.ql-header .ql-picker-item[data-value="3"]', title: '标题三' },
{ Choice: '.ql-header .ql-picker-item[data-value="4"]', title: '标题四' },
{ Choice: '.ql-header .ql-picker-item[data-value="5"]', title: '标题五' },
{ Choice: '.ql-header .ql-picker-item[data-value="6"]', title: '标题六' },
{ Choice: '.ql-header .ql-picker-item:last-child', title: '标准' },
{ Choice: '.ql-size .ql-picker-item[data-value="small"]', title: '小号' },
{ Choice: '.ql-size .ql-picker-item[data-value="large"]', title: '大号' },
{ Choice: '.ql-size .ql-picker-item[data-value="huge"]', title: '超大号' },
{ Choice: '.ql-size .ql-picker-item:nth-child(2)', title: '标准' },
{ Choice: '.ql-align .ql-picker-item:first-child', title: '居左对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="center"]', title: '居中对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="right"]', title: '居右对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="justify"]', title: '两端对齐' }
]
//
const initTitle = () => {
for (let item of titleConfig) {
// .editor
let tip = document.querySelector('.editor ' + item.Choice);
if (tip) {
tip.setAttribute('title', item.title);
}
}
}
// Add valueHtml for editor content
const valueHtml = ref('')
//
const customPaste = (e: ClipboardEvent) => {
// Prevent default paste behavior
e.preventDefault()
const clipboardData = e.clipboardData
if (!clipboardData) return
const types = clipboardData.types
if (types.includes('Files')) {
Array.from(clipboardData.files).forEach(file => {
// Handle file paste
// Add your file handling logic here
})
}
}
interface NoticeData {
id?: number;
@ -125,10 +250,23 @@ const addData = reactive<NoticeData>({
status: 1
});
const editorRef = shallowRef()
onMounted(() => {
getNoticeList()
// Wait for editor to be mounted and initialized
nextTick(() => {
// Add null check before accessing editor
if (editorRef.value && editorRef.value.getQuill()) {
// Initialize title tooltips
initTitle()
// Add paste event listener
const editor = editorRef.value.getQuill()
editor.root.addEventListener('paste', customPaste, false)
}
})
});
const openNew = () => {
@ -136,7 +274,7 @@ const openNew = () => {
addData.title = '';
addData.author = '';
addData.content = '';
valueHtml.value = '';
content.value = '';
addData.status = 1;
addIsEdit.value = 1;
addShow.value = true;
@ -145,7 +283,7 @@ const openNew = () => {
const getNoticeList = () => {
noticeList({ page: page.current, size: page.limit }).then((res) => {
if (res.code == 1) {
dataSource.value = res.data.list;
dataSource.value = res.data.data;
page.total = res.data.count;
} else {
layer.msg(res.msg, { icon: 2 })
@ -159,13 +297,13 @@ const editShowMsd = (data: NoticeData) => {
addData.title = data.title;
addData.author = data.author;
addData.content = data.content;
valueHtml.value = data.content;
content.value = data.content;
addData.status = parseInt(data.status.toString());
addIsEdit.value = 2;
}
// Watch for changes in valueHtml and update addData.content
watch(valueHtml, (newValue) => {
watch(content, (newValue) => {
addData.content = newValue;
})
@ -192,18 +330,20 @@ const columns = [
},
{
title: "作者",
width: "120px",
width: "120px",
key: "author"
},
{
title: "公告内容",
width: "280px",
key: "content"
key: "content",
customSlot: 'content',
ellipsisTooltip: true
},
{
title: "发布时间",
width: "180px",
key: "create_time"
key: "createtime"
},
{
title: "状态",
@ -222,7 +362,7 @@ const columns = [
]
const onCreated = (editor: any) => {
editorRef.value = Object.seal(editor);
}
}
const addButton = ref([
{
text: "确认",
@ -261,7 +401,6 @@ const addButton = ref([
}
])
</script>
<style src="@wangeditor/editor/dist/css/style.css"></style>
<style scoped>
:deep(.w-e-text-container) {
min-height: 400px !important;
@ -276,4 +415,12 @@ const addButton = ref([
border: 1px solid #ddd !important;
border-top: none !important;
}
:deep(.ql-editor) {
height: 300px;
width: 100%;
}
:deep(.layui-input-block){
max-width: 85%;
}
</style>