<script setup>
|
import request from "@/utils/request"
|
import {ElDatePicker, ElMessage} from "element-plus"
|
import {nextTick, onMounted, onUnmounted, reactive, ref, watch} from "vue"
|
import {Search} from "@element-plus/icons-vue"
|
import {useRouter} from 'vue-router'
|
import {changeFilterEvent, filterChanged} from "@/hook"
|
import {useI18n} from 'vue-i18n'
|
import deepClone from "@/utils/deepClone";
|
//语言获取
|
const {t} = useI18n()
|
let router = useRouter()
|
let produceList = ref([])
|
let labelList = ref([])
|
let list = ref()
|
|
|
const data = ref({
|
printList: []
|
})
|
|
const {currentRoute} = useRouter()
|
const route = currentRoute.value
|
data.value.printList = JSON.parse(route.query.printList)
|
onMounted(() => {
|
|
request.post(`/processCard/getSelectPrintLabel`, data.value).then((res) => {
|
if (res.code == 200) {
|
|
produceList.value = deepClone(res.data.data)
|
for (let i = 0; i < produceList.value.length; i++) {
|
let count= produceList.value[i].quantity
|
for (let j = 0; j < count; j++) {
|
labelList.value.push(produceList.value[i])
|
|
}
|
}
|
} else {
|
ElMessage.warning(res.msg)
|
router.push("/login")
|
}
|
})
|
|
}
|
|
)
|
|
|
|
// 打印方法
|
const printFlowCard = () => {
|
// 需要打印的局部区域赋予"print-wrap"的id
|
let el = document.getElementById("printFlowCard");
|
let doc = document;
|
let body = doc.body || doc.getElementsByTagName("body")[0];
|
let printId = "print-" + Date.now();
|
|
// 创建无副作用的打印容器(因不确定页面的打印元素有无其它样式)
|
let content = doc.createElement("div");
|
content.id = printId;
|
|
// 样式控制与打印无关的元素隐藏
|
let style = doc.createElement("style");
|
style.innerHTML =
|
"body>#" +
|
printId +
|
"{display:none}@media print{body>:not(#" +
|
printId +
|
"){display:none !important}body>#" +
|
printId +
|
"{display:block;padding-top:1px}}";
|
//
|
content.innerHTML = el.outerHTML;
|
// // console.log("el.outerHTML", el.outerHTML);
|
body.appendChild(style);
|
|
// 与style元素设置的样式相配合
|
// 把打印内容的元素添加到body(作为body的子元素,可用body的子选择器 '>' 控制打印样式)
|
body.appendChild(content);
|
setTimeout(() => {
|
window.print();
|
body.removeChild(content);
|
body.removeChild(style);
|
}, 20);
|
}
|
</script>
|
|
<template>
|
<el-button id="printButton" @click="printFlowCard();">打印</el-button>
|
<div id="printFlowCard" >
|
<div id="entirety" v-for="(item,id) in labelList" >
|
<div class="row1">{{ item.customer_name }}</div>
|
<div class="row2">{{ item.order_id }} {{ item.type_name }}</div>
|
<div class="row3">{{item.child_width}}*{{item.child_height}}={{item.quantity}}</div>
|
<div class="row5">{{item.project}} {{ item.remarks }}</div>
|
<div class="row6">{{item.glass_child}} {{item.processing_note}}</div>
|
</div>
|
</div>
|
|
</template>
|
|
<style scoped>
|
* {
|
margin: 0;
|
padding: 0;
|
}
|
|
#printButton {
|
margin-top: -20px;
|
width: 100px;
|
}
|
|
#printFlowCard {
|
display: flex;
|
justify-content: left;
|
flex-wrap: wrap;
|
margin-left: 5px;
|
margin-top: 15px;
|
}
|
|
#entirety{
|
text-align: center;
|
width: 195px;
|
height: 87px;
|
margin-bottom: 10px;
|
}
|
|
.row1 {
|
font-size: 8pt;
|
font-weight: bold;
|
height: 16px;
|
}
|
|
.row2 {
|
font-size: 8pt;
|
font-weight: bold;
|
height: 16px;
|
}
|
|
.row3 {
|
margin-top: -5px;
|
height: 19px;
|
font-size: 12pt;
|
font-weight: bolder;
|
}
|
|
.row5 {
|
height: 15px;
|
font-weight: bold;
|
font-size: 8pt;
|
}
|
|
.row6 {
|
height: 15px;
|
font-weight: bold;
|
font-size: 8pt;
|
}
|
|
|
|
@page {
|
size: auto; /* auto is the initial value */
|
margin: 7mm 2mm 2mm 0mm /* this affects the margin in the printer settings */
|
|
}
|
|
@media print {
|
div {
|
page-break-inside: avoid;
|
}
|
}
|
|
</style>
|