Commit f0614096 by zhuzhequan

添加自动打印逻辑

parent 67ac7f96
...@@ -529,10 +529,11 @@ export default { ...@@ -529,10 +529,11 @@ export default {
}, },
getBackFile({ files, size }, callback) { getBackFile({ files, size }, callback) {
let that = this; let that = this;
let bw = document.getElementById("line").clientWidth; let bw = window.getComputedStyle(
// let bw = window.getComputedStyle(
document.getElementsByClassName("grid")[0] document.getElementsByClassName("grid")[0]
).width; ).width;
bw = Number(bw.replace("px", ""));
// bw = Number(bw.replace("px", "")); // bw = Number(bw.replace("px", ""));
for (let i = 0; i < files.length; i++) { for (let i = 0; i < files.length; i++) {
files[i].url = files[i].productionFile || files[i].url; files[i].url = files[i].productionFile || files[i].url;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment