sf-utils2 sf-utils2
版本v3.3.3-beta1
首页
  • 01.快速开始 🔥
  • 02.基础-Base
  • 03.对象-Object
  • 04.数组-Array
  • 05.方法-Function
  • 06.字符串-String
  • 07.数学-Math
  • 08.dom
  • 09.拓展
  • webpack5.x教程学习 (opens new window)
  • 例子
  • 教程 🔥
  • 例子配置
企业级后台模版 (opens new window)
版本v3.3.3-beta1
首页
  • 01.快速开始 🔥
  • 02.基础-Base
  • 03.对象-Object
  • 04.数组-Array
  • 05.方法-Function
  • 06.字符串-String
  • 07.数学-Math
  • 08.dom
  • 09.拓展
  • webpack5.x教程学习 (opens new window)
  • 例子
  • 教程 🔥
  • 例子配置
企业级后台模版 (opens new window)
  • 快速开始

  • 基础-Base

  • 对象-Object

  • 数组-Array✨✨✨

  • 方法-Function

  • 字符串-String

  • 数学-Math

  • 文件-Buffer

  • 节点-dom

    • 序言 👏
    • _constant
    • getHttpBlob【获取远程二进制数据流】
    • downloadFile【http下载文件】
    • loadJsSync【单个加载js文件】
    • loadJsOrCssMulSync【批量加载远程css和js文件】
    • getAbsOffsetTop【距离父滚动区域顶部绝对距离】 🔥
    • getParentScrollElement【获取父元素滚动元素】 🔥
    • isScroll【是否是滚动容器】
    • scrollToX【水平滚动到某个具体位置】 🔥
    • scrollToY【垂直滚动到某个具体位置】 🔥
    • scrollToElement【滚动到某个dom元素】 🔥
    • isElementInContainer【元素是否整体在容器内】
    • batchElsPosInContainer【批量 dom 元素在 父的滚动视图位置】 🔥
    • isElementVisibleInViewport【是否可见在某个股东元素上】 🔥
    • observerElementMutation【监听dom元素属性变化】 🔥
    • print【打印】 🔥
      • 1.示例
      • 2.入参说明
        • 主入参
        • options 对象
      • 3.源码
    • partialCb【分片加载】
    • domUtils【dom方法操作基础】 🔥
  • 拓展

  • nodejs

目录

print【打印】 🔥

描述

打印指定的 dom 元素。
该方法由黄金苏同学提供

# 1.示例

打印table 打印body 打印table 之前、之后回调函数
<template>
  <div>
    <div style="display: flex; align-items: center; justify-content: center; padding: 10px 0">
      <el-button type="primary" size="small" @click="onPrintTable">打印table</el-button>
      <el-button type="primary" size="small" @click="onPrint">打印body</el-button>
      <el-button type="primary" size="small" @click="onPrintTableCb">打印table 之前、之后回调函数</el-button>
    </div>
    <el-table ref="table" :data="tableData" border style="width: 100%">
      <el-table-column prop="date" label="日期" width="180"> </el-table-column>
      <el-table-column prop="name" label="姓名" width="180"> </el-table-column>
      <el-table-column prop="address" label="地址"> </el-table-column>
    </el-table>
  </div>
</template>

<script>
import { print } from 'sf-utils2'

export default {
  data() {
    return {
      tableData: [
        {
          date: '2016-05-02',
          name: '王小虎',
          address: '上海市普陀区金沙江路 1518 弄'
        },
        {
          date: '2016-05-04',
          name: '王小虎',
          address: '上海市普陀区金沙江路 1517 弄'
        },
        {
          date: '2016-05-01',
          name: '王小虎',
          address: '上海市普陀区金沙江路 1519 弄'
        },
        {
          date: '2016-05-03',
          name: '王小虎',
          address: '上海市普陀区金沙江路 1516 弄'
        }
      ]
    }
  },
  mounted() {
    console.log(this)
  },
  methods: {
    onPrint() {
      print(document.querySelector('body'))
    },

    onPrintTable() {
      print(this.$refs.table.$el)
    },

    onPrintTableCb() {
      print(this.$refs.table.$el, {
        printBeforeFn: () => {
          alert('打印前回调')
        },
        printDoneCallBack: () => {
          alert('打印后回调')
        }
      })
    }
  }
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
显示代码 复制代码 复制代码

# 2.入参说明

# 主入参

参数 说明 类型 是否必填 默认值
dom 目标元素 HTMLElement 是 -
options 选项配置,详情见下 👇 HTMLElement - -

# options 对象

参数 说明 类型 是否必填 默认值
styleStr 样式 style String 否
setDomHeightArr 需要设置高度的 dom 选择器集合, Array 否
echartDomArr echarts 元素 id 选择器集合 Array 否
printBeforeFn 打印前回调 Function 否
printDoneCallBack 打印后回调 Function 否

# 3.源码

源码,点开查看 👈
// 黄金苏提供
// 打印类属性、方法定义
class Print {
  constructor(dom, options) {
    options = options || {}
    if (!(this instanceof Print)) return new Print(dom, options)
    this.conf = {
      styleStr: '',
      setDomHeightArr: [], // 需要动态获取并设置高度的 元素
      echartDomArr: [], // echart dom
      printBeforeFn: null, // 打印前回调
      printDoneCallBack: null // 打印后回调
    }
    for (const key in this.conf) {
      if (key && options.hasOwnProperty(key)) {
        this.conf[key] = options[key]
      }
    }
    // debugger
    if (typeof dom === 'string') {
      this.dom = document.querySelector(dom)
    } else {
      this.dom = this.isDOM(dom) ? dom : dom.$el
    }
    if (this.conf.setDomHeightArr && this.conf.setDomHeightArr.length) {
      this.setDomHeight(this.conf.setDomHeightArr)
    }
    this.init()
  }
  /**
   * 初始化
   */
  init() {
    let content = this.getStyle() + this.getHtml()
    this.writeIframe(content)
  }
  /**
   * 配置属性扩展
   * @param {Object} obj
   * @param {Object} obj2
   */
  extendOptions(obj, obj2) {
    for (let k in obj2) {
      obj[k] = obj2[k]
    }
    return obj
  }
  /**
   复制原网页所有的样式
   */
  getStyle() {
    let str = '',
      styles = document.querySelectorAll('style,link')
    for (let i = 0; i < styles.length; i++) {
      str += styles[i].outerHTML
    }
    str += `<style>
.no-print{display:none;}${this.conf.styleStr}
</style>`
    return str
  }
  // 表单赋值
  getHtml() {
    let inputs = document.querySelectorAll('input')
    let textareas = document.querySelectorAll('textarea')
    let selects = document.querySelectorAll('select')
    // debugger
    for (let k = 0; k < inputs.length; k++) {
      if (inputs[k].type == 'checkbox' || inputs[k].type == 'radio') {
        if (inputs[k].checked == true) {
          inputs[k].setAttribute('checked', 'checked')
        } else {
          inputs[k].removeAttribute('checked')
        }
      } else if (inputs[k].type == 'text') {
        inputs[k].setAttribute('value', inputs[k].value)
      } else {
        inputs[k].setAttribute('value', inputs[k].value)
      }
    }

    for (let k2 = 0; k2 < textareas.length; k2++) {
      if (textareas[k2].type == 'textarea') {
        textareas[k2].innerHTML = textareas[k2].value
      }
    }

    for (let k3 = 0; k3 < selects.length; k3++) {
      if (selects[k3].type == 'select-one') {
        let child = selects[k3].children
        for (let i in child) {
          if (child[i].tagName == 'OPTION') {
            if (child[i].selected == true) {
              child[i].setAttribute('selected', 'selected')
            } else {
              child[i].removeAttribute('selected')
            }
          }
        }
      }
    }

    return this.dom.outerHTML
  }
  /**
   创建iframe
   */
  writeIframe(content) {
    let w,
      doc,
      iframe = document.createElement('iframe'),
      f = document.body.appendChild(iframe)

    iframe.id = 'myIframe'
    iframe.setAttribute('style', 'position:absolute;width:0;height:0;top:-10px;left:-10px;')
    w = f.contentWindow || f.contentDocument
    doc = f.contentDocument || f.contentWindow.document
    doc.open()
    doc.write(content)
    doc.close()
    let _this = this
    iframe.onload = function () {
      // 弹出前,回调
      if (_this.conf.printBeforeFn) {
        _this.conf.printBeforeFn({ doc })
      }

      _this.drawEchartImg(doc).then(() => {
        _this.toPrint(w)
        setTimeout(function () {
          document.body.removeChild(iframe)
          // 弹出后,回调
          if (_this.conf.printDoneCallBack) {
            _this.conf.printDoneCallBack()
          }
        }, 100)
      })
    }
  }
  /**
   * 项目用到echarts,需要获取图片,来打印
   * @param {Object} doc iframe window
   */
  drawEchartImg(doc) {
    return new Promise((resolve, reject) => {
      if (this.conf.echartDomArr && this.conf.echartDomArr.length > 0) {
        this.conf.echartDomArr.forEach(e => {
          const dom = doc.querySelector('#' + e.$el.id)
          const img = new Image()
          const w = dom.offsetWidth + 'px'
          const H = dom.offsetHeight + 'px'

          img.style.width = w
          img.style.height = H
          img.src = e.imgSrc
          dom.innerHTML = ''
          dom.appendChild(img)
        })
      }
      resolve()
    })
  }
  /*
   * 打印
   */
  toPrint(frameWindow) {
    try {
      setTimeout(function () {
        frameWindow.focus()
        try {
          if (!frameWindow.document.execCommand('print', false, null)) {
            frameWindow.print()
          }
        } catch (e) {
          frameWindow.print()
        }
        frameWindow.close()
      }, 10)
    } catch (err) {
      console.log('err', err)
    }
  }
  isDOM =
    typeof HTMLElement === 'object'
      ? function (obj) {
          return obj instanceof HTMLElement
        }
      : function (obj) {
          return obj && typeof obj === 'object' && obj.nodeType === 1 && typeof obj.nodeName === 'string'
        }
  /**
   * 设置指定dom元素高度,通过获取该dom元素现有高度,并设置
   * @param {Array} arr
   */
  setDomHeight(arr) {
    if (arr && arr.length) {
      arr.forEach(name => {
        const domArr = document.querySelectorAll(name)
        // debugger
        domArr.forEach(dom => {
          dom.style.height = dom.offsetHeight + 'px'
        })
      })
    }
  }
}

/**
 * 打印dom
 * @param dom
 * @param options
 * @returns {Print}
 */
function print(dom, options = {}) {
  return new Print(dom, options)
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
上次更新: 2025/07/01, 14:52:29
observerElementMutation【监听dom元素属性变化】 🔥
partialCb【分片加载】

← observerElementMutation【监听dom元素属性变化】 🔥 partialCb【分片加载】→

Theme by Vdoing | Copyright © 2022-2025 bianpengfei
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式
×