From 5377aa129965297aa9daf37754412745c4a8f3b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E9=B9=8F?= Date: Thu, 20 Feb 2025 11:46:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=BF=E7=AD=96=E6=B3=95=E8=A7=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/policy/index.ts | 41 +++++ src/components/Editor/src/Editor.vue | 17 ++- src/permission.ts | 3 +- src/router/index.ts | 3 +- src/router/modules/remaining.ts | 10 ++ src/views/system/policy/PolicyForm.vue | 96 ++++++++++++ src/views/system/policy/index.vue | 200 +++++++++++++++++++++++++ src/views/system/policy/policyView.vue | 52 +++++++ 8 files changed, 416 insertions(+), 6 deletions(-) create mode 100644 src/api/system/policy/index.ts create mode 100644 src/views/system/policy/PolicyForm.vue create mode 100644 src/views/system/policy/index.vue create mode 100644 src/views/system/policy/policyView.vue diff --git a/src/api/system/policy/index.ts b/src/api/system/policy/index.ts new file mode 100644 index 0000000..b27657b --- /dev/null +++ b/src/api/system/policy/index.ts @@ -0,0 +1,41 @@ +import request from '@/config/axios' + +// 政策法规 VO +export interface PolicyVO { + id: number // id + name: string // 名称 + context: string // 内容 +} + +// 政策法规 API +export const PolicyApi = { + // 查询政策法规分页 + getPolicyPage: async (params: any) => { + return await request.get({ url: `/system/policy/page`, params }) + }, + + // 查询政策法规详情 + getPolicy: async (id: number) => { + return await request.get({ url: `/system/policy/get?id=` + id }) + }, + + // 新增政策法规 + createPolicy: async (data: PolicyVO) => { + return await request.post({ url: `/system/policy/create`, data }) + }, + + // 修改政策法规 + updatePolicy: async (data: PolicyVO) => { + return await request.put({ url: `/system/policy/update`, data }) + }, + + // 删除政策法规 + deletePolicy: async (id: number) => { + return await request.delete({ url: `/system/policy/delete?id=` + id }) + }, + + // 导出政策法规 Excel + exportPolicy: async (params) => { + return await request.download({ url: `/system/policy/export-excel`, params }) + }, +} \ No newline at end of file diff --git a/src/components/Editor/src/Editor.vue b/src/components/Editor/src/Editor.vue index 38c34e2..3a88a3f 100644 --- a/src/components/Editor/src/Editor.vue +++ b/src/components/Editor/src/Editor.vue @@ -27,7 +27,8 @@ const props = defineProps({ default: () => undefined }, readonly: propTypes.bool.def(false), - modelValue: propTypes.string.def('') + modelValue: propTypes.string.def(''), + showToolbar: propTypes.bool.def(true) }) const emit = defineEmits(['change', 'update:modelValue']) @@ -66,6 +67,7 @@ const editorConfig = computed((): IEditorConfig => { { placeholder: '请输入内容...', readOnly: props.readonly, + customAlert: (s: string, t: string) => { switch (t) { case 'success': @@ -87,7 +89,9 @@ const editorConfig = computed((): IEditorConfig => { }, autoFocus: false, scroll: true, + MENU_CONF: { + ['uploadImage']: { server: getUploadUrl(), // 单个文件的最大体积限制,默认为 2M @@ -133,7 +137,7 @@ const editorConfig = computed((): IEditorConfig => { }, // 自定义插入图片 customInsert(res: any, insertFn: InsertFnType) { - insertFn(res.data, 'image', res.data) + insertFn(res.data.url, 'image', res.data.url) } }, ['uploadVideo']: { @@ -181,7 +185,7 @@ const editorConfig = computed((): IEditorConfig => { }, // 自定义插入图片 customInsert(res: any, insertFn: InsertFnType) { - insertFn(res.data, 'mp4', res.data) + insertFn(res.data.url, 'mp4', res.data.url) } } }, @@ -210,6 +214,10 @@ onBeforeUnmount(() => { editor?.destroy() }) +const getShowToolbar = computed(() => { + return Boolean(props.showToolbar) +}) + const getEditorRef = async (): Promise => { await nextTick() return unref(editorRef.value) as IDomEditor @@ -221,9 +229,10 @@ defineExpose({