export default function (hiprint) { return function (options) { var addElementTypes = function (context) { context.removePrintElementTypes("defaultModule"); context.addPrintElementTypes("defaultModule", [ new hiprint.PrintElementTypeGroup("常规", [ { tid: "defaultModule.text", title: "文本", data: "", type: "text" }, { tid: "defaultModule.image", title: "图片", data: "", type: "image" }, { tid: "defaultModule.longText", title: "长文", data: "155123456789", type: "longText" }, { tid: "defaultModule.table", field: "table", title: "表格", type: "table", groupFields: ["name"], groupFooterFormatter: function (group, option) { return "这里自定义统计脚信息"; }, columns: [ [ { title: "行号", fixed: true, rowspan: 2, field: "id", width: 70 }, {title: "人员信息", colspan: 2}, {title: "销售统计", colspan: 2} ], [ { title: "姓名", align: "left", field: "name", width: 100 }, {title: "性别", field: "gender", width: 100}, { title: "销售数量", field: "count", width: 100 }, { title: "销售金额", field: "amount", width: 100 } ] ], editable: true, columnDisplayEditable: true,//列显示是否能编辑 columnDisplayIndexEditable: true,//列顺序显示是否能编辑 columnTitleEditable: true,//列标题是否能编辑 columnResizable: true, //列宽是否能调整 columnAlignEditable: true,//列对齐是否调整 isEnableEditField: true, //编辑字段 isEnableContextMenu: true, //开启右键菜单 默认true isEnableInsertRow: true, //插入行 isEnableDeleteRow: true, //删除行 isEnableInsertColumn: true, //插入列 isEnableDeleteColumn: true, //删除列 isEnableMergeCell: true, //合并单元格 }, { tid: "defaultModule.emptyTable", title: "空白表格", type: "table", columns: [ [ { title: "", field: "", width: 100 }, { title: "", field: "", width: 100 } ] ], }, { tid: "defaultModule.html", title: "html", formatter: function (data, options) { return '
'; }, type: "html" }, { tid: "defaultModule.customText", title: "自定义文本", customText: "自定义文本", custom: true, type: "text" } ]), new hiprint.PrintElementTypeGroup("辅助", [ { tid: "defaultModule.hline", title: "横线", type: "hline" }, { tid: "defaultModule.vline", title: "竖线", type: "vline" }, { tid: "defaultModule.rect", title: "矩形", type: "rect" }, { tid: "defaultModule.oval", title: "椭圆", type: "oval" }, { tid: 'defaultModule.barcode', title: '条形码', type: 'barcode', }, { tid: 'defaultModule.qrcode', title: '二维码', type: 'qrcode', } ]) ]); }; return { addElementTypes: addElementTypes }; }; };