|
|
|
@ -89,6 +89,11 @@
|
|
|
|
|
<!-- 查看二维码 --> |
|
|
|
|
<el-button type="primary" icon="Printer" @click="handleShowHtml">查看二维码</el-button> |
|
|
|
|
|
|
|
|
|
<!-- 查看二维码 --> |
|
|
|
|
<!-- <el-button type="primary" icon="Printer" @click="handleDownLoadTrayCode"> |
|
|
|
|
下载托盘码 |
|
|
|
|
</el-button> --> |
|
|
|
|
|
|
|
|
|
<!-- 报损 --> |
|
|
|
|
<el-button type="primary" icon="Edit" @click="handleBreakage">报 损</el-button> |
|
|
|
|
|
|
|
|
@ -297,6 +302,7 @@ import {
|
|
|
|
|
add, |
|
|
|
|
update, |
|
|
|
|
getPrintTemplate, |
|
|
|
|
getDownloadTrayCode, |
|
|
|
|
disable, |
|
|
|
|
addable, |
|
|
|
|
vacants, |
|
|
|
@ -644,6 +650,29 @@ const handleShowHtml = async () => {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 下载托盘码PDF */ |
|
|
|
|
const handleDownLoadTrayCode = async () => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
if (details.selectionList.length === 0) { |
|
|
|
|
ElMessage.warning('请选择至少一条数据'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
let qr = details.selectionList.map(item => item.id).join(','); |
|
|
|
|
console.log(qr); |
|
|
|
|
const res = await getDownloadTrayCode(qr); |
|
|
|
|
console.log(res.data); |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
console.log('data :>> ', data); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
details.loadingObj.pageLoading = false; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 报损 */ |
|
|
|
|
const handleBreakage = () => { |
|
|
|
|
if (details.selectionList.length === 0) return ElMessage.warning('请选择一条数据进行报损'); |
|
|
|
|