O2OA公文编辑器(版式公文组件)为正文添加公章功能方法
O2OA公文编辑器(版式公文组件)为正文添加公章功能方法1.在流程管理-资源文件中上传一个图片公章。
复制图片地址:
/x_processplatform_assemble_surface/jaxrs/file/8ef1a5f1-699a-4281-9cfc-aab2ee2c6047/application/3aed5fe9-1bde-42e0-b8ed-67bf4b5485f9/content
2.在流程管理-发文表单顶部添加[盖章]按钮。
操作脚本代码如下:
this.form.get("gz").setData("gz");
this.form.get("documenteditor").seal("/x_processplatform_assemble_surface/jaxrs/file/8ef1a5f1-699a-4281-9cfc-aab2ee2c6047/application/3aed5fe9-1bde-42e0-b8ed-67bf4b5485f9/content",0)
官方说明文档:
https://www.o2oa.net/api/MWF.xApplication.process.Xform.Documenteditor.html#seal
seal(position)
对正文进行模拟盖章,此方法只是进行模拟盖章,通过图片显示,并非专业盖章,不具备法律效应。
@param src{String} 盖章图片的url.
Description
对正文进行模拟盖章(模板中必须有class为“doc_layout_seal”的img对象)
Parameters
position integer 要盖章的位置, 默认为0.
Example
this.form.get("documenteditor").seal("../custom/img/seal.png", 0); //在第一个盖章位置进行模拟盖章
Source
x_component_process_Xform/Documenteditor.js, line 722
页:
[1]