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({