如何在文档定义pdfmake的内容中添加✓复选标记作为文本

时间:2019-07-15 06:01:39

标签: ionic4 pdfmake

我需要在pdf文件中添加选中标记(✓)。以下是我的文档定义代码。我正在Ionic 4中创建pdf

this.right='✓';


 content: [
          {//2
            text: this.right,
            absolutePosition: { x: 340, y: 100 },
            fontSize: 6
          }]

其中this.right表示选中标记(✓)。

1 个答案:

答案 0 :(得分:1)

尝试添加内容属性。 例如:

<style>
ul.tickedList li:before {
 content: '✓';
    color: #18ba9b;
    font-size: 24px;
    font-weight: 600;
}
</style>