前端打印在预览中出现分页问题,折行 空行 只能打印单页等

发布于 2022-09-11 18:20:55 字数 2176 浏览 23 评论 0

问题描述:

在项目中测试前端打印出现折行、空行、分页错误错乱、或只能打印单页的问题。详情看下图效果。求解!!

相关代码:

template

<div class="doc-print" ref="print">
  <h1 class="doc-title" v-if="title">{{ title }}</h1>
  <div class="doc-form">
    <el-col :span="item.span || 12" v-for="(item, index) in formOption.column" :key="index">
      <div class="doc-form-item">
        <span class="title" v-text="`${item.label}: `" :style="{width: formOption.labelWidth}"></span>
        <span class="text" v-text="formData[item.prop] ? formData[item.prop] : ''"></span>
      </div>
    </el-col>
  </div>
  <div class="doc-table">
    <table border="1" cellpadding="0" cellspacing="0" borderColor="#000000">
      <thead style="display:table-header-group">
        <tr>
          <th v-for="item in tableOption" :key="item.prop">
            {{ item.label }}
          </th>
          <th class="space">备注</th>
        </tr>
      </thead>
      <tbody>
        <tr v-for="(item, index) in tableData" :key="index" class="A4">
          <td v-for="prop in tableOption" :key="prop.prop">
            <template v-if="prop.prop === 'index'" class="index">{{ index+1 }}</template>
            <template v-else>
              {{ item[prop.prop] || "" }}
            </template>
          </td>
          <td class="space"></td>
        </tr>
      </tbody>
    </table>
  </div>
  <div class="doc-autograph">
    签名或盖章:
  </div>
</div>

script

// 打印主程序js
import print from "@/util/print"
Vue.use(print)

// 调用打印
print () {
  this.$print(this.$refs.print)
},

浏览器效果

火狐浏览器 (只能打印一页 无其他异常)

火狐浏览器效果

谷歌浏览器 (出现断行 第二页分页异常)

谷歌浏览器效果

360浏览器 (换页没换纸 两页内容贴在一起)

360浏览器效果

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文