review:【bpm 工作流】流程打印

This commit is contained in:
YunaiV
2025-09-03 13:25:05 +08:00
parent 1c6e6eb24e
commit be964a6287
13 changed files with 139 additions and 126 deletions

View File

@@ -1,16 +1,17 @@
import {IModuleConf} from '@wangeditor/editor'
import { IModuleConf } from '@wangeditor/editor'
import withProcessRecord from './plugin'
import renderElemConf from './render-elem'
import elemToHtmlConf from './elem-to-html'
import parseHtmlConf from './parse-elem-html'
import processRecordMenu from "./menu/ProcessRecordMenu"
import processRecordMenu from './menu/ProcessRecordMenu'
// TODO @lesanPrintTemplate 是参考了哪些文档哇?要不要在 index.ts 稍微写点注释,方便大家理解;
const module: Partial<IModuleConf> = {
editorPlugin: withProcessRecord,
renderElems: [renderElemConf],
elemsToHtml: [elemToHtmlConf],
parseElemsHtml: [parseHtmlConf],
menus: [processRecordMenu],
menus: [processRecordMenu]
}
export default module