|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<basic-container v-loading="loadingObj.pageLoading"> |
|
|
|
|
<avue-crud |
|
|
|
|
:option="option" |
|
|
|
|
v-model:search="search" |
|
|
|
@ -191,6 +191,9 @@ export default {
|
|
|
|
|
data: [], |
|
|
|
|
html: null, // 页面包条码内容 |
|
|
|
|
dialogVisible: false, |
|
|
|
|
loadingObj: { |
|
|
|
|
pageLoading: false, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
@ -359,7 +362,7 @@ export default {
|
|
|
|
|
let pri_html = ''; |
|
|
|
|
pri_html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml); |
|
|
|
|
// console.log(pri_html); |
|
|
|
|
console.log(123123) |
|
|
|
|
console.log(123123); |
|
|
|
|
that.w_print(pri_html); |
|
|
|
|
}); |
|
|
|
|
// checkcode.push(item.orderPackageCode) |
|
|
|
@ -382,26 +385,34 @@ export default {
|
|
|
|
|
// LODOP.PREVIEW(); //预览(预览打印无脚标) |
|
|
|
|
LODOP.PRINT(); //直接打印 |
|
|
|
|
}, |
|
|
|
|
handleqr() { |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
async handleqr() { |
|
|
|
|
try { |
|
|
|
|
this.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
let checkcode = []; |
|
|
|
|
this.selectionList.map(item => { |
|
|
|
|
checkcode.push(item.id); |
|
|
|
|
}); |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let checkcode = []; |
|
|
|
|
this.selectionList.map(item => { |
|
|
|
|
checkcode.push(item.id); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
let qr = checkcode.join(','); |
|
|
|
|
console.log(qr); |
|
|
|
|
this.html = ''; |
|
|
|
|
getPrintTemplate(qr).then(res => { |
|
|
|
|
// this.orderPackageCode = res.data |
|
|
|
|
let qr = checkcode.join(','); |
|
|
|
|
console.log(qr); |
|
|
|
|
this.html = ''; |
|
|
|
|
const res = await getPrintTemplate(qr); |
|
|
|
|
console.log(res.data); |
|
|
|
|
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml); |
|
|
|
|
}); |
|
|
|
|
this.dialogVisible = true; |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
this.html = this.getHtmls(data.dataList, data.templateHtml); |
|
|
|
|
this.dialogVisible = true; |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
this.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
Details(row) { |
|
|
|
|
this.$router.push({ |
|
|
|
@ -527,8 +538,8 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
selectionClear() { |
|
|
|
|
this.selectionList = []; |
|
|
|
|
console.log(this.query,'query'); |
|
|
|
|
this.$refs.crud.toggleSelection(); |
|
|
|
|
console.log(this.query, 'query'); |
|
|
|
|
this.$refs.crud.toggleSelection(); |
|
|
|
|
}, |
|
|
|
|
currentChange(currentPage) { |
|
|
|
|
this.page.currentPage = currentPage; |
|
|
|
@ -542,14 +553,14 @@ export default {
|
|
|
|
|
onLoad(page, params = {}) { |
|
|
|
|
this.loading = true; |
|
|
|
|
|
|
|
|
|
const { warehouseId, trayStatus, type, palletCode,palletName } = this.query; |
|
|
|
|
const { warehouseId, trayStatus, type, palletCode, palletName } = this.query; |
|
|
|
|
|
|
|
|
|
let values = { |
|
|
|
|
warehouseId: warehouseId, |
|
|
|
|
trayStatus: trayStatus, |
|
|
|
|
type: type, |
|
|
|
|
palletCode: palletCode, |
|
|
|
|
palletName:palletName |
|
|
|
|
palletName: palletName, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
getList(page.currentPage, page.pageSize, values).then(res => { |
|
|
|
|