printOutsource.vue
5.67 KB
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
<template>
<div class="container" style=" width:600px;/*height:228px;*/color: #333">
<div class="table-page-search-wrapper">
<a-form layout="inline">
<a-row :gutter="24">
<a-col :md="12" :sm="8">
<a-form-item label="生产令号" :labelCol="{span: 6}" :wrapperCol="{span: 14, offset: 1}">
<a-input placeholder="请输入生产令号" v-model="querySource.orderno"></a-input>
</a-form-item>
</a-col>
<a-col :md="12" :sm="8">
<a-form-item label="项目名称" :labelCol="{span: 6}" :wrapperCol="{span: 14, offset: 1}">
<a-input placeholder="请输入项目名称" v-model="querySource.projectname"></a-input>
</a-form-item>
</a-col>
<a-col :md="12" :sm="8">
<a-form-item label="物料名称" :labelCol="{span: 6}" :wrapperCol="{span: 14, offset: 1}">
<a-input placeholder="请输入物料名称" v-model="querySource.partno"></a-input>
</a-form-item>
</a-col>
<a-col :md="12" :sm="8">
<a-form-item label="物料名称" :labelCol="{span: 6}" :wrapperCol="{span: 14, offset: 1}">
<a-input placeholder="请输入部件名称" v-model="querySource.name"></a-input>
</a-form-item>
</a-col>
<a-col :xl="18" :lg="11" :md="18" :sm="24">
<a-form-item label="完成日期">
<j-date placeholder="请选择开始日期" class="query-group-cust" v-model="querySource.createBy"></j-date>
<span class="query-group-split-cust"></span>
<j-date placeholder="请选择结束日期" class="query-group-cust" v-model="querySource.updateBy"></j-date>
</a-form-item>
</a-col>
<a-col :md="12" :sm="8">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="search" icon="search">查询</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
<div class="noprint container" style="text-align:right; padding: 20px;float: right">
<a-button v-print="'#printContent'" ghost type="primary">打印</a-button>
</div>
<div class="row" id="printContent" >
<table width="100%" border="0" cellspacing="0" cellpadding="0"
v-for="source in dataSource">
<caption style="font-size:22px;text-align:center; color:#333; padding-bottom: 3px;"></caption>
<tbody>
<tr >
<td scope="col" style="font-size:12px;font-weight:bold" >生产令号:{{source.orderno}}</td>
</tr>
<tr >
<td scope="col" width="100%" style="font-size:12px;font-weight:bold" >物料图号:{{source.partno}} </td>
<td rowspan="4" style="padding: 1px">
<!--<img class="" align="center" valign="middle" style="vertical-align:middle; padding:2px;"/>-->
<!--<span class="qrcode"></span>-->
<!-- <div id="qrcode" ></div>-->
<vue-qr :text="source.userDef1" :size="70" :margin="0"></vue-qr>
</td>
</tr>
<tr >
<td scope="col" style="font-size:12px;font-weight:bold" >部件名称:{{source.name}}</td>
</tr>
<tr >
<td scope="col" style="font-size:12px;font-weight:bold" >数量:{{source.qty}}</td>
</tr>
<tr >
<td scope="col" style="font-size:12px;font-weight:bold">单位:{{source.unit}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</template>
<script>
import { getOutsourcingPrintDetail, getOutsourcingPrint } from '../../api/api'
import QRCode from 'qrcodejs2' // 引入qrcode
// import QrcodeVue from 'qrcode.vue'
import VueQr from 'vue-qr'
export default {
name: 'printScheduler',
components: {
QRCode,
VueQr,
// QrcodeVue,
},
data() {
return {
querySource:{},
dataSource:[],
downloadData: {
url: '扫码访问的链接地址',
icon: '随便一张图片的地址也行'
},
value: '',
size: 300,
}
},
methods:{
print(){
var print= document.getElementById('printContent');
var newContent = print.innerHTML;
var oldContent = document.body.innerHTML;
// this.$nextTick (function () {
// this.qrcode();
// });
document.body.innerHTML = newContent;
// 获取要打印的dom内容
// let newDomHtml = this.$refs.printContent.innerHTML;
// // 将要打印的内容赋值给本页
// window.document.body.innerHTML= newDomHtml ;
// 调用window的打印
window.print();
// 解决打印之后按钮失效的问题,刷新页面
window.location.reload();
return false;
},
// qrcode() {
// setTimeout(function() {
// let qrcode = new QRCode('qrcode', {
// width: 25,
// height: 25,
// text: 'https://www.baidu.com', // 二维码地址
// })
// },500)
// },
loadData(id){
getOutsourcingPrint(id).then((res) => {
this.dataSource = res;
this.querySource.headerId = id;
// this.qrcode();
})
},
search() {
getOutsourcingPrintDetail(this.querySource).then((res) => {
console.log(res);
this.dataSource = res;
// this.qrcode();
})
}
},
mounted:function() {
console.log("123456");
let id = this.$route.query.id;
console.log(id);
this.loadData(id);
},
}
</script>
<style type="text/css">
@media print {
.noprint {
display: none;
}
}
</style>
<style scoped>
* {
color: #000000!important;
-webkit-tap-highlight-color: #000000!important;
}
</style>