|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<basic-container v-loading="loadingObj.pageLoading"> |
|
|
|
|
<avue-crud |
|
|
|
|
:option="option" |
|
|
|
|
v-model:search="search" |
|
|
|
@ -137,6 +137,10 @@ export default {
|
|
|
|
|
qrCodeObj: [], |
|
|
|
|
dialogVisible: false, |
|
|
|
|
html: '', // 页面包条码内容 |
|
|
|
|
/** 页面loading */ |
|
|
|
|
loadingObj: { |
|
|
|
|
pageLoading: false, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
@ -423,7 +427,8 @@ export default {
|
|
|
|
|
// LODOP.PREVIEW(); //预览(预览打印无脚标) |
|
|
|
|
LODOP.PRINT(); //直接打印 |
|
|
|
|
}, |
|
|
|
|
handleqr() { |
|
|
|
|
async handleqr() { |
|
|
|
|
try { |
|
|
|
|
if (this.selectionList.length === 0) { |
|
|
|
|
this.$message.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
@ -438,26 +443,19 @@ export default {
|
|
|
|
|
let qr = checkcode.join(','); |
|
|
|
|
console.log(qr); |
|
|
|
|
this.html = ''; |
|
|
|
|
getPrintTemplate(qr).then(res => { |
|
|
|
|
// this.orderPackageCode = res.data |
|
|
|
|
console.log(res.data); |
|
|
|
|
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml); |
|
|
|
|
}); |
|
|
|
|
this.dialogVisible = true; |
|
|
|
|
this.loadingObj.pageLoading = true; |
|
|
|
|
const res = await getPrintTemplate(qr); |
|
|
|
|
|
|
|
|
|
/* this.dialogVisible = true; |
|
|
|
|
this.qrCodeObj=[]; |
|
|
|
|
this.selectionList.forEach(item=>{ |
|
|
|
|
// console.log(">>>>>>>>>>",item); |
|
|
|
|
//构建生成二维码条件 |
|
|
|
|
let params={} |
|
|
|
|
getTemplate(Object.assign(params,item)).then(res=>{ |
|
|
|
|
let url = window.URL.createObjectURL(res.data); // 获取返回参数中的需要的值data |
|
|
|
|
console.log(">>>>>>>>>>",url); |
|
|
|
|
this.qrCodeObj.push(url); |
|
|
|
|
}) |
|
|
|
|
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; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
handleExport() { |
|
|
|
|
let downloadUrl = `/blade-BasicdataGoodsAllocation/BasicdataGoodsAllocation/export-BasicdataGoodsAllocation?${ |
|
|
|
|